/* ------------------------------------------
   Navbar + Fullscreen Banner / Slideshow CSS
   Desktop-first. Uses Playfair + Poppins fonts.
   ------------------------------------------ */

/* :root / theme */
:root{
  --accent: #d79a36;      /* gold */
  --accent-dark: #c5862a;
  --white: #ffffff;
  --nav-overlay: rgba(0,0,0,0.28);
  --text-light: rgba(255,255,255,0.95);
}

/* Basic reset / container */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Poppins', sans-serif;
  color:#222;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.container{max-width:1250px;margin:0 auto;padding:0 20px;}


/* ---------------------------------------------------
   GLOBAL VARIABLES
--------------------------------------------------- */
:root {
  --accent: #d79a36;
  --text-dark: #3a1c1c;
  --white: #ffffff;
  --maroon: #5a1c1c;
}

/* ---------------------------------------------------
   NAVBAR
--------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: all .35s ease;
}

.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  transition: color .3s;
}

.site-header.scrolled .brand {
  color: var(--maroon);
}

.site-header.scrolled .brand span {
  color: var(--accent);
}

/* DESKTOP NAV */
.site-nav {
  display: block;
}

.site-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.site-nav a {
  text-decoration: none;
  font-size: 16px;
  color: var(--white);
  transition: .3s;
}

.site-header.scrolled .site-nav a {
  color: var(--maroon);
}

.site-nav a:hover {
  color: var(--accent);
}

/* ---------------------------------------------------
   HAMBURGER (Mobile only)
--------------------------------------------------- */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: .3s;
}

.site-header.scrolled .hamburger span {
  background: var(--maroon);
}

/* ---------------------------------------------------
   MOBILE MENU
--------------------------------------------------- */
@media (max-width: 700px) {

  .hamburger {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #ffffff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform .3s ease;
    z-index: 90;
    box-shadow: 0 -6px 16px rgba(0,0,0,0.08);
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .site-nav a {
    color: var(--maroon);
    font-size: 18px;
  }
}

/* ---------------------------------------------------
   HERO SLIDESHOW
--------------------------------------------------- */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform .7s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* TEXT */
.slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slide-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--white);
  margin-bottom: 14px;
}

.slide-text .accent {
  color: var(--accent);
}

/* BUTTONS */
.btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-solid {
  background: var(--accent);
  color: var(--text-dark);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}

/* ---------------------------------------------------
   SLIDER ARROWS (Subtle)
--------------------------------------------------- */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: .3s;
}

.slide-arrow:hover {
  background: rgba(255,255,255,0.25);
}

.slide-arrow.left { left: 16px; }
.slide-arrow.right { right: 16px; }

/* ---------------------------------------------------
   DOTS (Subtle)
--------------------------------------------------- */
.slide-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  cursor: pointer;
}

.slide-dot.active {
  background: var(--accent);
  width: 26px;
  border-radius: 20px;
  transition: .3s;
}

/* ---------------------------------------------------
   MOBILE SLIDE TEXT
--------------------------------------------------- */
@media (max-width: 700px) {
  .slide-text h1 { font-size: 32px; }
  .slide-text p { font-size: 15px; }
}


/* About Section */
.about-section {
  width: 100%;
  padding: 90px 20px; /* leaves room for fixed navbar */
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Layout */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 20px;
}

/* Image styling */
.about-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 6px solid rgba(201,110,110,0.06); /* soft accent */
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}

/* Slight hover lift on larger screens */
@media (hover: hover) {
  .about-image img:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

/* Text */
.about-content .eyebrow {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0 0 12px 0;
  font-size: 28px;
  color: #111;
}

.about-content .lead {
  font-size: 16px;
  margin: 0 0 14px 0;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
}

.about-content p {
  margin: 0 0 12px 0;
  color: #444;
  line-height: 1.65;
  font-size: 15px;
}

/* Small accent for the name in content if needed */
.about-content strong {
  color: #C96E6E; /* rose-gold accent */
}

/* Responsive: stack on mobile */
@media (max-width: 880px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .about-image img {
    max-height: 420px;
    border-radius: 14px;
  }

  .about-content .eyebrow {
    font-size: 22px;
  }

  .about-content p, .about-content .lead {
    font-size: 15px;
  }
}

/* Small screens: tighten padding */
@media (max-width: 480px) {
  .about-section {
    padding: 60px 16px;
  }

  .about-image img {
    max-height: 360px;
  }
}

/* --- Stats Section --- */
.stats-section {
  width: 100%;
  padding: 48px 16px;
  background-color: #550000;
  box-sizing: border-box;

  position: relative;
  color: #f9f3ef;
}

/* subtle overlay to ensure contrast */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(70, 20, 25, 0.55); /* deep maroon overlay */
  z-index: 0;
}

.stats-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
  text-align: center;
  padding: 10px 24px;
}

/* Single stat card */
.stat {
  padding: 18px 14px;
}

/* Number style */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: #f2b233; /* warm gold */
  margin-bottom: 10px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), opacity 0.6s;
  text-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* Label */
.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #f6efe8;
  opacity: 0.95;
}

/* "Visible" state when animation triggers */
.stat.show .stat-number {
  transform: translateY(0);
  opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 960px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 36px 12px;
  }
  .stats-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .stat-number {
    font-size: 40px;
  }
  .stat-label {
    font-size: 15px;
  }
}

/* Services Section */
.services-section {
  padding: 80px 16px;
  background: #e9e0da; /* soft warm background */
  color: #2b1f1a;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.eyebrow {
  color: #d79a36;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 8px;
  font-size: 14px;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 0 0 10px;
  color: #3a1f1f;
}

.section-head .sub {
  color: #6b5b57;
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
}

/* Grid */
.services-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 28px auto 10px;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(35,20,20,0.06);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s;
  overflow: hidden;
  border: 1px solid rgba(180,160,150,0.06);
  will-change: transform;
  opacity: 0;
  transform: translateY(18px) scale(0.995);
}

/* Slight accent for popular card */
.service-card.popular {
  border: 1px solid rgba(201,110,110,0.12);
}

/* When in view */
.service-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.05s;
}

/* Hover effects (desktop) */
@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 50px rgba(35,20,20,0.12);
  }

  .service-card:hover .icon-circle {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(201,110,110,0.10);
  }
}

/* Card inner layout */
.card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-top {
  display: flex;
  align-items: center;   /* ensures icon + heading align perfectly */
  gap: 12px;             /* reduces large spacing */
  margin: 0 0 10px 0;    /* fixes big gap above heading */
  padding: 0;            /* prevents default padding from creating extra space */
}


.icon-circle {
  width: 48px;
  height: 48px;
  background: #f6e9dd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a2b2b;
  flex-shrink: 0;     /* prevents stretching */
  margin: 0;          /* removes extra top spacing */
}

.card-title {
  margin: 0;               /* remove default margin */
  padding: 0;              /* keep clean spacing */
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  color: #371b1b;
  line-height: 1.2;        /* ensures tight spacing */
  display: flex;
  align-items: center;
}


/* description and list */
.card-desc {
  color: #6b5b57;
  margin: 6px 0 12px;
  line-height: 1.6;
  font-size: 14px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  color: #5b4b47;
  line-height: 1.9;
  font-size: 14px;
}

/* footer with price and button */
.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(120,100,95,0.06);
  padding-top: 14px;
}

.price {
  font-family: 'Arial', serif;
  font-size: 18px;
  color: #6b2424;
}

.btn-book {
  text-decoration: none;
  background: transparent;
  color: #c9862d;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn-book:hover {
  background: #c9862d;
  color: #fff;
}

/* Responsive grid breakpoints */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 60px 12px;
  }
  .section-head h2 {
    font-size: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 18px;
    border-radius: 14px;
  }
  .icon-circle {
    width: 48px;
    height: 48px;
  }
  .card-title { font-size: 18px; }
  .price { font-size: 18px; }
}

/* Pricing note */
.prices-note {
  text-align: center;
  color: #776563;
  font-size: 13px;
  margin-top: 22px;
  font-style: italic;
}

/* OUR WORK SECTION */
.work-section {
  padding: 80px 16px;
  background: #faf6f3;
}

.work-head {
  text-align: center;
  margin-bottom: 40px;
}

.work-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 0 0 10px;
  color: #3a1f1f;
}

.work-sub {
  color: #6b5b57;
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
}

/* Gallery Grid */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.work-item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  transform: translateY(14px);
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}

.work-item.in-view {
  transform: translateY(0);
  opacity: 1;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

/* Hover effect */
@media (hover: hover) {
  .work-item:hover img {
    transform: scale(1.08);
  }
}

/* Brochure button */
.brochure-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

.brochure-btn {
  padding: 12px 28px;
  background: #7a2b2b;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease;
}

.brochure-btn:hover {
  background: #602020;
}

/* Responsive */
@media (max-width: 900px) {
  .work-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-title {
    font-size: 32px;
  }
}

@media (max-width: 500px) {
  .work-gallery {
    grid-template-columns: 1fr;
  }
  .work-title {
    font-size: 26px;
  }
}

/* Appointment Section */
.appointment-section {
  padding: 80px 16px;
  background: #f4efea;
}

.appoint-head {
  text-align: center;
  margin-bottom: 40px;
}

.appoint-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 0 0 10px;
  color: #351c1c;
}

.appoint-title span {
  color: #7a1f1f;
}

.appoint-sub {
  color: #6a5b55;
  max-width: 750px;
  margin: 0 auto;
}

/* Grid Layouts */
.appoint-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
}

.appoint-grid.top {
  grid-template-columns: repeat(3, 1fr);
}

.appoint-grid.wide {
  grid-template-columns: repeat(2, 1fr);
}

/* Cards */
.appoint-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(18px);
}

.appoint-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .appoint-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.10);
  }
}

/* Icons */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}

.icon-circle img {
  width: 28px;
  height: 28px;
}

.icon-circle.green { background: #dafce7; }
.icon-circle.pink { background: #f7d8de; }
.icon-circle.gold { background: #f9edd6; }
.icon-circle.brown { background: #efe4de; }

/* Text */
.appoint-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
  font-size: 20px;
  color: #3d1c1c;
}

.appoint-card p {
  color: #6a5b55;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-link {
  text-decoration: none;
  color: #c9862d;
  font-weight: 600;
  transition: 0.3s;
}

.contact-link:hover {
  color: #7a2b2b;
}

/* Responsive */
@media (max-width: 950px) {
  .appoint-grid.top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .appoint-grid.top,
  .appoint-grid.wide {
    grid-template-columns: 1fr;
  }

  .appoint-title { font-size: 32px; }
}

/* ===========================
   FOOTER — INVERTED THEME
   =========================== */

.site-footer {
  background: #3a0e0e; /* deep maroon */
  color: #f8e9e4; /* soft light cream */
  padding: 42px 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

/* Blocks */
.footer-block { padding: 8px 6px; }

/* Logo / Brand */
.brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff5f2; /* brighter */
  margin-bottom: 8px;
}

.footer-desc {
  color: #f4dcd2;
  font-size: 14px;
  margin: 0 0 12px;
}

/* Contact */
.contact-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-line a {
  color: #ffcf9f; /* gold-ish highlight */
  text-decoration: none;
  font-weight: 600;
}

.contact-line a:hover {
  color: #ffb86b;
}

/* Headings */
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin: 0 0 12px;
  color: #ffe5db;
}

/* Links */
.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.links a {
  text-decoration: none;
  color: #f3dad1;
  font-size: 14px;
}

.links a:hover,
.terms a:hover {
  color: #ffb86b;
}

/* Social */
.social-note {
  color: #f3dad1;
  font-size: 14px;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-item {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  color: #ffe7d2;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
}

.social-item:hover,
.social-item:focus {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.22);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

/* Legal section */
.legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.copyright {
  font-size: 13px;
  color: #f3dad1;
  margin: 10px 0 0;
}

.terms a {
  font-size: 13px;
  color: #f3dad1;
  text-decoration: none;
}

.terms a:hover {
  color: #ffb86b;
}

/* Responsive Layouts */
@media (min-width: 820px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    align-items: start;
  }
  .legal { align-items: flex-end; }
}

@media (min-width: 640px) and (max-width: 819px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .legal { align-items: flex-start; }
}

/* Focus Accessibility */
a:focus {
  outline: 3px solid rgba(255,200,150,0.35);
  outline-offset: 3px;
  border-radius: 6px;
}
