/*
Theme Name: App Minimal
*/

:root {
  --bg: #f6f6f6;
  --card: #fff;
  --text: #111;
}

/* RESET */
body {
  margin: 0;
  font-family: system-ui;
  background: var(--bg);
  color: var(--text);
}

main {
  padding-bottom: 140px;
}

/* HEADER */
.top {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 14px;
  border-bottom: 1px solid #eee;
}

.brand {
  display: flex;
  align-items: center;
}

.custom-logo {
  height: 52px;
  width: auto;
}
.custom-logo-link {
  display: flex;
  align-items: center;
}

.top {
  justify-content: space-between;
	padding: 15px;
}

/* MENU (desktop default hidden for mobile-first) */
.menu {
  display: none;
}

/* MENU LIST */
.menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-left: 16px;
}

.menu a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
	 padding: 6px 0;
  position: relative;
}

.menu a:hover {
  color: var(--primary, #6200ee);
}


/* HAMBURGER */
.menu-toggle {
  font-size: 22px;
  background: none;
  border: none;
}


.menu.open {
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  background: #fff;
  display: block;
  border-bottom: 1px solid #eee;
}

.menu.open ul {
  flex-direction: column;
}

.menu.open li {
  margin: 0;
}

.menu.open a {
  display: block;
  padding: 14px;
  border-top: 1px solid #eee;
}


@media (min-width: 768px) {

  .menu {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

}



/* CONTENT */
main {
  padding-bottom: 70px;
}

/* CARD */
.card {
  background: var(--card);
  margin: 12px;
  padding: 14px;
  border: 1px solid #eee;
}

/* NAV */
.nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  background: #fff;
  border-top: 1px solid #eee;
}

.nav a {
  flex: 1;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  color: #444;
}


/* WRAPPER */
.cta-wrap {
  position: fixed;
  bottom: 0px; /* nad bottom nav */
  left: 0;
  width: 100%;
  padding: 0 0px;
}

/* FULL WIDTH BAR */
.cta-bar {
  display: block;
  width: 100%;
  background: var(--primary, #1f6df1);
  color: #fff;
  text-align: center;
  padding: 53px 0px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* CALL BUTTON (lebdi nad barom) */
.cta-call {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 74px;
  height: 74px;
  background: #12AA61;
  color: var(--primary, white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
	text-align: center;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}



.cta-back-call {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 104px;
  height: 104px;
  background: #1f6df1;
  color: var(--primary, white);
  border-radius: 50%;
  display: flex;
}



.cta-call:active {
	transform: scale(1.09) translate(-46%, 0%);
}


