/* =========================================
   Almási Beauty Boutique - Fő stíluslap
   ========================================= */

/* --- Google Fonts importálása --- */
@import url("https://fonts.googleapis.com/css2?family=Sacramento&family=Montserrat:wght@300;400;500;600;700&display=swap");

/* --- CSS változók --- */
:root {
  --primary: #c9a48a;
  --primary-dark: #b8897a;
  --accent: #e8d5c9;
  --bg: #faf7f4;
  --bg-section: #f5ede7;
  --text-dark: #3a3a3a;
  --text-mid: #6b5b52;
  --text-light: #9a8075;
  --white: #ffffff;
  --border: #e0cec6;
  --nav-height: 80px;
  --footer-bg: #3a3a3a;
}

/* --- Reset & alap --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  background-color: var(--bg);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =========================================
   NAVIGÁCIÓ
   ========================================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 244, 0.7);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo a {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-title {
  font-family: "Sacramento", cursive;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.nav-logo .logo-sub {
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-menu li a {
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-mid);
  padding: 0.5rem 0.8rem;
  border-top: 1px solid transparent;
  border-radius: 0;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-dark);
  background: transparent;
  border-top-color: var(--primary-dark);
}

.nav-cta a {
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--white);
  background: var(--primary);
  padding: 0.55rem 1.3rem;
  border-radius: 30px;
  transition: background 0.25s;
}

.nav-cta a:hover {
  background: var(--primary-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobilmenü */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--primary-dark);
}

.mobile-menu .mobile-cta {
  margin-top: 0.5rem;
  text-align: center;
  color: var(--white) !important;
  background: var(--primary);
  border-radius: 30px;
  border: none !important;
  padding: 0.7rem !important;
}

/* =========================================
   VIRÁGDÍSZ
   ========================================= */

.flower-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  line-height: 0;
}

.flower-top img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   OLDALTARTALOM WRAP
   ========================================= */

.page-wrap {
  padding-top: var(--nav-height);
  position: relative;
  z-index: 0;
}

/* =========================================
   HERO SZEKCIÓ (főoldal)
   ========================================= */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../Images/9c608a_0e491c307cb049daa32abaa58283ad81.avif");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 2rem;
  max-width: 700px;
}

.hero-content .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.hero-content h1 {
  font-family: "Sacramento", cursive;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  font-style: italic;
  color: var(--accent);
}

.hero-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* =========================================
   GOMBOK
   ========================================= */

.btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 30px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #555;
}

/* =========================================
   SZEKCIÓ KÖZÖS
   ========================================= */

section {
  padding: 50px 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: "Georgia", serif;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  font-weight: 200;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-title-sacramento {
  font-family: "Sacramento", cursive;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  font-weight: 200;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--primary);
  margin: 1rem 0 2.5rem;
}

.section-divider.centered {
  margin: 1rem auto 2.5rem;
}

/* =========================================
   FŐOLDAL KÁRTYÁK
   ========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.service-card-img {
  height: 240px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 1.8rem;
}

.service-card-body h3 {
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* =========================================
   KIEMELŐ SZEKCIÓ (bézs háttér)
   ========================================= */

.highlight-section {
  /* background: var(--bg-section); */
}

/* =========================================
   SÁVOS KÉT OSZLOPOS LAYOUT
   ========================================= */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reversed .two-col-img {
  order: 2;
}

.two-col.reversed .two-col-text {
  order: 1;
}

.two-col-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.two-col-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.two-col-text .section-subtitle {
  margin-bottom: 0.3rem;
}

.two-col-text p {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

/* Belico kör dizájn */
.belico-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #f6dcd0;
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto;
}

.belico-circle .logo-title {
  font-family: "Sacramento", cursive;
  font-size: 5rem;
  color: #000000;
}

/* =========================================
   OLDAL FEJLÉC (belső oldalak)
   ========================================= */

.page-header {
  /* background: var(--bg-section); */
  padding: 380px 2rem 50px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header .section-subtitle {
  margin-bottom: 0.5rem;
}

/* =========================================
   KEZELÉSEK OLDAL
   ========================================= */

.treatment-category {
  margin-bottom: 4rem;
}

.treatment-category h2 {
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border);
}

.treatment-category .cat-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.treatment-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.8rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  position: relative;
}

.treatment-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(201, 164, 138, 0.15);
}

.treatment-item h3 {
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.treatment-item .duration {
  font-size: 0.78rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.treatment-item p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =========================================
   ÁRLISTA OLDAL
   ========================================= */

.price-category {
  margin-bottom: 3.5rem;
  scroll-margin-top: calc(var(--nav-height) + 2rem);
}

.price-category h2 {
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--primary);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.price-table tr:hover {
  background: var(--bg-section);
}

.price-table td {
  padding: 0.4rem 0.5rem;
  font-size: 1.2rem;
  color: var(--text-mid);
  vertical-align: top;
}

.price-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 45%;
}

.price-table td.price-col {
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
  text-align: right;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Testkezelések összetett ártáblázat */
.price-table-complex {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.price-table-complex th {
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 0.7rem;
  text-align: left;
  border-bottom: 2px solid var(--primary);
}

.price-table-complex td {
  padding: 0.8rem 0.7rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.price-table-complex td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.price-table-complex td.price-col {
  font-weight: 700;
  color: var(--primary-dark);
}

.price-table-complex tr:hover td {
  background: var(--bg-section);
}

/* =========================================
   RÓLAM OLDAL
   ========================================= */

.about-text p {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.belico-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.belico-features li {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.no-list {
  margin: 1rem 0 1.5rem 1.2rem;
}

.no-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
}

.no-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* =========================================
   KAPCSOLAT OLDAL
   ========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.contact-info .sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 0.2s;
}

.contact-detail-text a:hover {
  color: var(--primary);
}

/* Kapcsolat form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  color: var(--text-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* =========================================
   FOOTER
   ========================================= */

footer {
  background: var(--footer-bg);
  color: #ccc;
  padding: 60px 2rem 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 340px;
}

.footer-brand .logo-title {
  font-family: "Sacramento", cursive;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 400;
}

.footer-brand .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #aaa;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: #aaa;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 2rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-contact-item .icon {
  margin-top: 2px;
  color: var(--primary);
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #666;
}

/* =========================================
   EGYÉB KÖZÖS ELEMEK
   ========================================= */

.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mb-2 {
  margin-bottom: 2rem;
}

/* Flowers dekoratív kép szalag */
.flowers-divider {
  width: 100%;
  max-height: 80px;
  overflow: hidden;
  opacity: 0.5;
}

.flowers-divider img {
  width: 100%;
  object-fit: cover;
}

/* Kizáró okok lista */
.exclusion-list {
  columns: 2;
  column-gap: 2rem;
}

.exclusion-list li {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  break-inside: avoid;
}

.exclusion-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Info dobozok */
.info-box {
  background: var(--bg-section);
  border-left: 4px solid var(--primary);
  border-radius: 0 6px 6px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.info-box p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* =========================================
   RESZPONZIVITÁS
   ========================================= */

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .two-col.reversed .two-col-img {
    order: 0;
  }

  .two-col.reversed .two-col-text {
    order: 0;
  }

  .belico-circle {
    width: 300px;
    height: 300px;
  }

  .belico-circle .logo-title {
    font-size: 4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .exclusion-list {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 60px 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.8rem 1.2rem;
  }
}
