/*
==================================================
YOSHI'S HAIR SALON - STYLESHEET (style.css)
Final Comprehensive Version (v8) - HERO BG MOVED TO CSS
==================================================
*/

/* --- 1. COLOR VARIABLES AND BASE RESET --- */
:root {
    /* Main Palette */
    --color-primary: #0A192F;      /* Dark Navy Blue/Charcoal */
    --color-accent: #0a0a0a;       /* Deep Gold/Brass (Frames, Links, Button Border, NAV TEXT) */
    --color-header-footer: #f3ccea; /* Deep Blue (Header/Footer Background) */
    --color-secondary: #f3f3f0;    /* Light Silver/Off-White (Text on Hover) */
    --color-text-dark: #333333;    /* Dark Text on Light Background */

    /* GRADIENT FOR BODY: Soft, Light Silver-Blue */
    --color-gradient-start: #D8E1EB; 
    --color-gradient-end: #B4C2D3;   

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 15px;
    --spacing-md: 30px;
    --spacing-lg: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-dark);
    background: linear-gradient(180deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
    background-attachment: fixed; 
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}
a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--color-accent);
}

.content-section {
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent; 
}

/* --- 2. HEADER AND NAVIGATION --- */
header {
    background-color: var(--color-header-footer); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    position: relative; 
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md); 
}

.nav-list { 
    list-style: none;
    display: flex; 
    gap: var(--spacing-md);
    padding: 0;
    margin: 0;
}

.nav-bar a {
    /* Updated: All navigation links are Gold on Blue background */
    color: var(--color-accent); 
    font-weight: 700;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    
    /* Larger Font Size */
    font-size: 1.5em; 
}

.nav-bar a:hover {
    /* Hover state is Silver */
    color: var(--color-secondary); 
}

/* Logo size (65px) maintained */
/* .nav-logo img {
    height: 100px; 
} */



.nav-logo{
  width:100px;
  height:100px;
  transform: translateY(12px); /* lets logo overlap */
}

.nav-logo img{
  width:150px;
  height:150px;
}


.menu-toggle {
    display: none; 
    background: none;
    border: none;
    color: var(--color-accent); 
    font-size: 1.8em;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; 
}







/* NOTE: the active .hero-section rule (background image, sizing, animation)
   lives further down this file and overrides anything set here. Edit it there. */













@keyframes fadeHero {
    to {
        opacity: 1;
    }
}


@keyframes slowZoom {
    from {
        background-size: 100%;
    }
    to {
        background-size: 110%;
    }
} 










.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); 
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: var(--spacing-lg);
}


.hero-content h1 {
  color: #e6d32d;                 /* soft luxury blue */
  font-family: "Playfair Display", serif;
  font-weight: 500px;              /* thinner = luxury */
  letter-spacing: 0.18em;        /* spaced elegance */
  text-transform: uppercase;
  font-size: 3.2em;
  margin-bottom: 18px;

  text-shadow:
    0 2px 6px rgba(0,0,0,.45),
    0 0 12px rgba(127,199,234,.35);
}


.hero-content h1 {
  color: #e7ee89;                 /* soft luxury blue */
  font-family: "Playfair Display", serif;
  font-weight: 500px;              /* thinner = luxury */
  letter-spacing: 0.18em;        /* spaced elegance */
  text-transform: uppercase;
  font-size: 3.2em;
  margin-bottom: 18px;

  text-shadow:
    0 2px 6px rgba(0,0,0,.45),
    0 0 12px rgba(127,199,234,.35);
}



.hero-content p {
    font-size: 1.2em;
    margin-bottom: var(--spacing-md);
}

.btn-book {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 800px;
    ;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    
    /* Silver button with Gold Border */
    background-color: var(--color-secondary); 
    color: var(--color-primary);            
    border: 3px solid var(--color-accent);  
}

.btn-book:hover {
    background-color: var(--color-accent);  
    color: rgb(250, 249, 248);                          
}


/* --- 4. COMMON COMPONENTS / GOLD FRAMES & PLACEHOLDERS --- */

.gold-frame {
    border: 20px solid var(--color-accent);
    box-shadow: 0 0 15px rgba(207, 164, 59, 0.5); 
    border-radius: 5px; 
}

/* Image Placeholder Style: Applied to all standard placeholder blocks */
.image-placeholder {
    width: 350px;
    height: 350px;
    background-color: #E0E4E8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    /* Apply gold frame explicitly to all image placeholders */
    border: 5px solid var(--color-accent);
    box-shadow: 0 0 15px rgba(207, 164, 59, 0.5); 
}

.bio-image-placeholder {
    width: 1700px;
    height: 325px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e61515;
    /* Apply gold frame explicitly to the bio image placeholder */
    border: 5px solid var(--color-accent);
    box-shadow: 0 0 15px rgba(207, 164, 59, 0.5); 
}

/* New: Home Page Image Grid */
.home-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid #ccc;
}
.home-image-grid .image-placeholder {
    width: 100%; /* Make them fill the grid column */
    height: 500px;
    margin: 0 auto 10px;
}


/* --- 5. SERVICES PAGE SPECIFIC (Gold Frames on boxes) --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}
.service-card {
    padding: var(--spacing-md);
    text-align: center;
    border-radius: 5px;
    /* Applying Gold Frame Style to service boxes */
    border: 3px solid var(--color-accent); 
    box-shadow: 0 0 8px rgba(207, 164, 59, 0.3);
}

/* --- 9. FOOTER (FINALIZED LAYOUT) --- */

.main-footer {
    background-color: var(--color-header-footer); 
    color: var(--color-secondary); 
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-sm);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1); 
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 200px 1fr; /* Left Block, Center Logo, Right Block */
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-md); 
}

.footer-block.left-info {
    text-align: left;
}
.footer-block.right-info {
    text-align: right;
}

/* .footer-block h3, .footer-block a {
    color: var(--color-secondary); 
} */



.footer-block h3,
.footer-block a,
.footer-block p,
.footer-block li {
    color: var(--color-accent);
}


.footer-logo-area {
    text-align: center;
}
/* Logo size (55px) maintained */
.footer-logo img {
    height: 95px; 
    margin-bottom: 5px;
}

.footer-social-links {
    text-align: center; 
    width: 100%;
    margin-top: 10px;
}
.footer-social-links a {
    /* Social Icons are Silver/Secondary color */
    color: var(--color-secondary); 
    font-size: 1.5em;
    margin: 0 15px; 
}
.footer-social-links a:hover {
    /* Hover is Gold */
    color: var(--color-accent); 
}

.copyright-wrapper {
    width: 100%;
    text-align: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*
==================================================
10. RESPONSIVE DESIGN 
==================================================
*/

@media (max-width: 1024px) {
    .nav-list { display: none; }
    .nav-list.active { 
        display: flex; 
        flex-direction: column;
        position: absolute;
        top: 80px; 
        left: 0;
        width: 100%;
        background-color: var(--color-primary); 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: var(--spacing-md) 0;
    }
    .menu-toggle { display: block; }
    .nav-bar a { color: var(--color-secondary); } /* Mobile links revert to silver/white */
    .nav-bar a:hover { color: var(--color-accent); }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-logo-area {
        grid-column: 1 / 3; 
        order: -1;
    }
    .footer-block.right-info {
        text-align: left;
    }
}








.main-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer li {
  margin-bottom: 6px;
}


@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; 
    }
    .footer-block {
        text-align: center !important; 
    }
    .image-placeholder {
        width: 150px;
        height: 150px;
    }
}

/* =========================
   MAGAZINE FEATURE (HOME)
========================= */
.magazine-feature {
  padding: 70px 20px;
}

.magazine-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.magazine-title {
  text-align: center;
  letter-spacing: 0.25em;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.magazine-subtitle {
  text-align: center;
  opacity: 0.85;
  margin: 0 auto 40px;
  max-width: 720px;
  font-family: "Roboto", sans-serif;
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Card */
.mag-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

/* .mag-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
} */



.mag-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
}


.mag-card figcaption {
  padding: 14px 14px 16px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* Optional CTA */
.magazine-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.magazine-link {
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.magazine-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
}

/* Responsive */
@media (max-width: 1100px) {
  .magazine-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .magazine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mag-card img {
    height: 300px;
  }
}

@media (max-width: 460px) {
  .magazine-grid {
    grid-template-columns: 1fr;
  }
  .mag-card img {
    height: 340px;
  }
}




/* .home-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 370px); 
  gap: 30px;
  justify-content: center;
}
.home-image-item {
  width: 370px;
  text-align: center;
} */


.home-image-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  justify-content: center;
  padding: 0 15px;
}

.home-image-item{
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}

.home-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}
.content-section {
  padding: var(--spacing-lg) 10px;
  max-width: 1200px;
  margin: 0 auto;
}






  .bio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%; 
  display: block;
}


.bio-image-placeholder {
  width: 1700px;
  height: 325px;
  overflow: hidden;   /* REQUIRED */
}

/* .bio-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: #e0e4e8;
} */

.headshot-crop {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.headshot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.precision-card {
  position: relative;

  /* Background image + dark overlay for readability */
  background-image:
    linear-gradient(
      rgba(10, 25, 47, 0.65),
      rgba(10, 25, 47, 0.65)
    ),
    url("../images/precisioncut.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #ffffff;
  padding: 45px 35px;
  border-radius: 16px;
}
.precision-card {
  border: 2px solid var(--color-accent);
}
.precision-card {
  border: 2px solid var(--color-accent);
}
.precision-card {
  transition: background-size 0.4s ease, transform 0.3s ease;
}
.precision-card:hover {
  background-size: 110%;
  transform: translateY(-4px);
}



.precision-card {
  background-image:
    linear-gradient(
      rgba(235, 232, 225, 0.781),
      rgba(15, 15, 15, 0.144)
    ),
    url("../images/precisioncut.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Center footer text + icons to GOLD */
.footer-logo-area p,
.footer-social-links a,
.copyright-wrapper {
  color: var(--color-accent) !important;
}





/* ===== HERO ANIMATION (PUT AT BOTTOM OF FILE) ===== */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(248, 245, 245);
  position: relative;
  height: 120vh;

   background-image: url("../images/dolly.jpg");

   /* background-image: url("../images/dollyandcher.png"); */



  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  opacity: 0;
  animation: fadeHero 0.8s ease forwards, slowZoom 25s ease-in-out infinite alternate;
}

@keyframes fadeHero {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slowZoom {
  from { background-size: 100%; }
  to   { background-size: 110%; }
}







/* Force BEFORE / AFTER images to fit inside the boxes */

.ba-wrap {
  overflow: hidden;
}

.ba {
  width: 100%;
  height: 100%;
}

.ba img,
.ba.before,
.ba.after {
  width: 100%;
  height: 100%;
  object-fit: cover;
}







/* === BEFORE/AFTER FIX (PUT AT BOTTOM) === */
.ba-wrap{
  width: 100%;
  max-width: 350px;     /* same as your placeholder box size */
  height: 350px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  overflow: hidden;

  background: #E0E4E8;
  border: 5px solid var(--color-accent);
  box-shadow: 0 0 15px rgba(207,164,59,0.5);
  border-radius: 5px;
}

.ba-img{
  width: 200%;
  height: 75%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}




/* BODY TEXT (clean modern) */
body{
  font-family: "Roboto", sans-serif;
}

/* NAVIGATION = ELEGANT */
.nav-list a{
  font-family: "Playfair Display", serif;
  font-weight:600;
  letter-spacing:.08em;
  text-transform: uppercase;
}

/* HERO TITLE */
.hero-content h1{
  font-family: "Playfair Display", serif;
  letter-spacing:.15em;
}

/* SECTION TITLES */
.section-title,
.magazine-title,
.footer-block h3{
  font-family: "Playfair Display", serif;
  letter-spacing:.08em;
}

/* SUBTITLES */
.hero-content p,
.magazine-subtitle{
  font-family: "Roboto", sans-serif;
  letter-spacing:.12em;
}





/* BEFORE / AFTER GRID */

.before-after{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  width:100%;
}

.before,
.after{
  height:220px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:"Playfair Display", serif;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:13px;
}

/* soft luxury placeholders */
.before{
  background:linear-gradient(135deg,#f6c9d7,#ffe6ef);
  color:#555;
}

.after{
  background:linear-gradient(135deg,#cfe0e6,#edf6ff);
  color:#333;
}

/* container polish */
.gallery-item{
  background:white;
  padding:5px;
  border-radius:22px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* label */
.image-label{
  margin-top:12px;
  font-family:"Playfair Display", serif;
  letter-spacing:.08em;
  font-size:12px;
  text-transform:uppercase;
}




.footer-block.right-info a {
  margin-right: 12px;
}

.footer-block.right-info i {
  font-size: 36px;
  transition: 0.3s ease;
}

.footer-block.right-info i:hover {
  transform: scale(1.2);
}



.footer-logo img {
  width: 250px;   /* adjust size here */
  height: auto;
}


footer {
  background: linear-gradient(135deg, #f7cfe3, #f3e6c8);
}


footer {
  background: linear-gradient(135deg, #f7cfe3, #8a4f80);
  box-shadow: inset 0 6px 20px rgba(0,0,0,.05);
}



.nav-bar {
  position: relative;
  overflow: hidden;
}












.content-section > *{
  position: relative;
  z-index: 2;
}


.nav-list a{
  position: relative;
}

.nav-list a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background: linear-gradient(90deg,#cfa43b,#fff1b8,#cfa43b);
  transition:.35s ease;
}

.nav-list a:hover::after{
  width:100%;
}

.nav-logo img{
  filter: drop-shadow(0 0 12px rgba(207,164,59,.45));
}


header{
  background-size: 200% 200%;
  animation: headerShift 18s ease infinite;
}

@keyframes headerShift{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}



.price-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:40px;
}

.price-card{
  background:rgba(255,255,255,.65);
  border:2px solid var(--color-accent);
  border-radius:22px;
  padding:30px 25px;
  text-align:center;
  box-shadow:0 14px 35px rgba(0,0,0,.12);
  transition:.3s ease;
}

.price-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(0,0,0,.2);
}

.price-card h3{
  font-family:"Playfair Display",serif;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.price{
  font-size:2rem;
  font-weight:700;
  color:var(--color-accent);
  margin:10px 0;
}

.price-card span{
  opacity:.8;
  font-size:.95rem;
}

.price-note{
  text-align:center;
  margin-top:30px;
  font-style:italic;
  opacity:.7;
}


/* ===== FLIP PRICE CARDS ===== */

.service-flip{
  perspective: 1200px;
}

.service-flip-inner{
  position: relative;
  width: 100%;
  min-height: 220px;              /* adjust if you want taller cards */
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

/* flip on hover (desktop) */
.service-flip:hover .service-flip-inner{
  transform: rotateY(180deg);
}

/* front + back share the same “card shell” */
.service-front,
.service-back{
  position: absolute;
  inset: 0;
  backface-visibility: hidden;

  border: 2px solid var(--color-accent);
  border-radius: 22px;
  padding: 28px 24px;
  text-align: center;

  background: rgba(255,255,255,0.65);
  box-shadow: 0 14px 35px rgba(0,0,0,.12);
}

/* FRONT styles */
.service-front h3{
  font-family: "Playfair Display", serif;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.service-front p{
  opacity: 0.9;
}

/* BACK styles */
.service-back{
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  /* subtle luxury back tone */
  background: linear-gradient(135deg, rgba(247,207,227,.75), rgba(243,230,200,.65));
}

.service-back .price{
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent);
  margin: 0;
}

.service-back .price-sub{
  margin: 0;
  opacity: .85;
}

.price-btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid var(--color-accent);
  color: var(--color-primary);
  background: rgba(255,255,255,.75);
  font-weight: 700;
  letter-spacing: .06em;
  transition: transform .25s ease, background .25s ease;
}

.price-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.95);
}

.service-back .price-note{
  font-size: .85rem;
  opacity: .7;
  margin-top: 6px;
}

/* Mobile: tap-friendly (no hover) */
@media (max-width: 768px){
  .service-flip:hover .service-flip-inner{
    transform: none;
  }
}


.before-after{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.before-after img{
  transition: transform .4s ease;
}

.before-after:hover img{
  transform: scale(1.05);
}

/* glow */
.before-after::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  box-shadow:0 0 25px rgba(207,164,59,.45);
  opacity:0;
  transition:.3s;
}

.before-after:hover::after{
  opacity:1;
}

/* label upgrade */
.before,
.after{
  transition:.3s ease;
}

.before-after:hover .before,
.before-after:hover .after{
  filter:brightness(1.05);
}
.before-after{
  display:grid;
  grid-template-columns:1fr 1fr;
}

/* ===== ROBOT HELPER WIDGET ===== */

.robot-btn{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 2px solid rgba(207,164,59,.85);
  background: rgba(224, 208, 167, 0.88);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  font-size: 26px;
  cursor: pointer;
  z-index: 9999;
  transition: transform .2s ease;
}

.robot-btn:hover{
  transform: translateY(-2px);
}

.robot-panel{
  position: fixed;
  right: 18px;
  bottom: 90px;
  width: 320px;
  border-radius: 18px;
  border: 2px solid rgba(207,164,59,.55);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  overflow: hidden;
  display: none;
  z-index: 9999;
}

.robot-header{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 12px 14px;
  background: linear-gradient(135deg, #f7cfe3, #f3e6c8);
  font-family: "Playfair Display", serif;
  letter-spacing: .06em;
}

.robot-close{
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  opacity: .8;
}

.robot-body{
  padding: 14px;
  font-family: "Roboto", sans-serif;
}

.robot-intro{
  margin-bottom: 10px;
  opacity: .85;
}

.robot-chips{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.robot-chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.95);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .15s ease;
}

.robot-chip:hover{
  transform: translateY(-1px);
}

.robot-answer{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.04);
  opacity: .95;
  min-height: 44px;
}

.robot-actions{
  display:flex;
  gap: 10px;
  margin-top: 12px;
}

.robot-link{
  flex:1;
  text-align:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 2px solid rgba(207,164,59,.85);
  background: rgba(255,255,255,.95);
  font-weight: 800;
  letter-spacing: .05em;
}

.robot-link.ghost{
  border-color: rgba(0,0,0,.12);
  opacity: .9;
}

/* mobile fit */
@media (max-width: 420px){
  .robot-panel{ width: calc(100% - 36px); }
}

.service-front,
.service-back,
.price-card{
  background-image:
    radial-gradient(circle, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 3px 3px;
}

.service-front:hover,
.price-card:hover{
  transform: translateY(-4px);
}



.service-front,
.service-back,
.price-card{
  border: 2px solid transparent;
  background-clip: padding-box;
}

.service-front::before,
.service-back::before,
.price-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:24px;
  background: linear-gradient(135deg,#f7cfe3,#f3e6c8,#cfe0e6);
  z-index:-1;
}






/* ===== Luxury upgrade for the 3 home image cards ===== */
.home-image-grid{
  gap: 34px;                 /* more breathing room */
}

.home-image-item{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(212,175,55,.28);  /* subtle gold */
  box-shadow: 0 10px 30px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  transition: transform .6s cubic-bezier(.2,.8,.2,1),
              box-shadow .6s cubic-bezier(.2,.8,.2,1);
}

/* the image */
.home-image{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px; /* keeps your rounded look */
  transition: transform 1.2s ease, filter 1.2s ease;
}

/* soft luxury gradient overlay on top of photo */
.home-image-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.22), rgba(0,0,0,0) 55%);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events:none;
}

/* hover = slow upscale + lift */
.home-image-item:hover{
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 50px rgba(0,0,0,.12), 0 5px 14px rgba(0,0,0,.06);
}

.home-image-item:hover .home-image{
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05);
}

.home-image-item:hover::after{
  opacity: 1;
}

/* title under image — make it luxury */
.home-image-item p{
  margin: 16px 0 18px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: .04em;
  color: #1b1b1b;
}

/* tiny gold line under the title */
.home-image-item p::after{
  content:"";
  display:block;
  width: 44px;
  height: 1px;
  background: rgba(212,175,55,.95);
  margin: 10px auto 0;
  opacity: .9;
}





/* ===========================
   LUXURY NAV OVERRIDE (PASTE AT BOTTOM)
=========================== */

/* 1) Make accent actually GOLD (optional but recommended) */
:root{
  --color-accent: #cfa43b; /* luxe gold */
}

/* 2) Premium header background (so your headerShift animation actually shows) */
header{
  background: linear-gradient(135deg, #f8d7e8, #f3e6c8, #d8e1eb);
  background-size: 200% 200%;
  animation: headerShift 18s ease infinite;
  border-bottom: 1px solid rgba(207,164,59,.35); /* hairline gold */
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* 3) More luxury spacing + smaller type */
.nav-bar{
  padding: 22px 30px;
}

/* Keep your layout, just improve the vibe */
.nav-bar a{
  color: rgba(10,10,10,.92);
  font-family: "Playfair Display", serif;
  font-weight: 600;          /* less heavy */
  font-size: 15px;           /* luxe nav is smaller */
  letter-spacing: .22em;     /* editorial spacing */
  text-transform: uppercase;
  border-bottom: none;       /* remove thick underline */
  transition: opacity .35s ease;
}

/* 4) Gold underline on hover (subtle, expensive) */
.nav-list a{
  position: relative;
}

.nav-list a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  width:0%;
  height:1px;
  background: linear-gradient(90deg,#cfa43b,#fff1b8,#cfa43b);
  transform: translateX(-50%);
  transition: width .35s ease;
  opacity: .95;
}

.nav-list a:hover{
  opacity: 1;
}

.nav-list a:hover::after,
.nav-list a.active::after{
  width: 70%;
}

/* 5) Logo: consistent size + refined glow */
.nav-logo{
  width: 64px;
  height: 64px;
  transform: translateY(6px);
}

.nav-logo img{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}





/* ===========================
   BIG-LUX NAV (keeps big type + big logo)
=========================== */

/* make accent actually GOLD (your accent was black) */
:root{
  --color-accent: #cfa43b;
}

/* luxury header background */
header{
  background: linear-gradient(135deg, #f7cfe3 0%, #f3e6c8 50%, #d8e1eb 100%);
  background-size: 200% 200%;
  animation: headerShift 18s ease infinite;
  border-bottom: 1px solid rgba(207,164,59,.35);
  box-shadow: 0 12px 34px rgba(0,0,0,.10);
}

/* keep your structure, just refine */
.nav-bar{
  padding: 18px 30px;
}

/* KEEP BIG font but make it “expensive” */
.nav-bar a{
  color: rgba(10,10,10,.92);
  font-family: "Playfair Display", serif;
  font-weight: 600;           /* softer than 700 = more luxe */
  font-size: 1.5em;           /* KEEP your big size */
  letter-spacing: .18em;      /* luxury spacing */
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}

/* elegant underline (gold shimmer) */
.nav-list a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  width:0%;
  height:2px; /* keep your thickness */
  background: linear-gradient(90deg,#cfa43b,#fff1b8,#cfa43b);
  transform: translateX(-50%);
  transition: width .35s ease;
  opacity: .95;
}

.nav-list a:hover::after,
.nav-list a.active::after{
  width: 100%;
}

/* logo stays BIG but becomes “jewelry” */
.nav-logo{
  width: 110px;
  height: 110px;
  transform: translateY(10px);
  display: grid;
  place-items: center;
}

/* keep your big image size */
.nav-logo img{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.14));
}

/* add a subtle gold ring behind the logo (premium detail) */
.nav-logo::before{
  content:"";
  position:absolute;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  border: 2px solid rgba(207,164,59,.55);
  box-shadow: 0 0 18px rgba(207,164,59,.25);
  pointer-events:none;
}






/* ===== FIX LOGO SHIFT (anchor ring + center logo) ===== */

.nav-logo-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo{
  position: relative;     /* IMPORTANT: anchors ::before */
  width: 150px;           /* match your image size */
  height: 150px;
  transform: none !important;  /* stop the jump */
  display: grid;
  place-items: center;
}

.nav-logo img{
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

/* gold ring behind logo */
.nav-logo::before{
  content:"";
  position:absolute;
  inset: -10px;           /* ring size */
  border-radius: 999px;
  border: 2px solid rgba(207,164,59,.55);
  box-shadow: 0 0 18px rgba(207,164,59,.25);
  pointer-events:none;
}




/* ===== FINAL NAV LOGO FIX (paste at very bottom) ===== */

/* Force true center layout */
.nav-bar{
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Left list stays left, right list stays right, with safety space near logo */
.nav-bar .nav-list:first-of-type{
  justify-content: flex-start;
  padding-right: 90px;   /* keeps links away from logo */
}
.nav-bar .nav-list:last-of-type{
  justify-content: flex-end;
  padding-left: 90px;    /* keeps links away from logo */
}

/* Center logo container */
.nav-logo-container{
  display: grid;
  place-items: center;
  justify-self: center;
  z-index: 5;            /* logo stays above */
}

/* Lock logo size + remove all movement */
.nav-logo{
  position: relative;
  width: 150px;
  height: 150px;
  transform: none !important;
}

/* Image stays centered */
.nav-logo img{
  width: 150px;
  height: 150px;
  display: block;
  object-fit: contain;
  transform: none !important;
}

/* PERFECTLY centered gold ring (no drifting) */
.nav-logo::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 175px;
  height: 175px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid rgba(207,164,59,.55);
  box-shadow: 0 0 18px rgba(207,164,59,.22);
  pointer-events:none;
  z-index: -1;
}




/* REMOVE OUTER GOLD RING COMPLETELY */
.nav-logo::before{
  content: none !important;
}





/* ===== FOOTER TEXT TO BLACK ===== */

.footer-block h3,
.footer-block a,
.footer-block p,
.footer-block li,
.footer-social-links a,
.copyright-wrapper{
  color: #000 !important;
}















/* ==========================
   ABOUT PAGE LUXURY BIO
========================== */

.bio-section{
  padding-top: 40px;
}

/* soft luxury “editorial” background behind the block */
.bio-card{
  padding: 40px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(207,164,59,.10), transparent 45%),
    radial-gradient(circle at bottom right, rgba(127,199,234,.10), transparent 45%),
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,.35));
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.12);
}

/* make photo feel premium (keep your gold vibe but soften it) */
.bio-image-placeholder{
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(207,164,59,.65);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  background: rgba(255,255,255,.4);
}

/* Title styling */
.bio-section h2{
  letter-spacing: .08em;
}

/* Highlights row */
.bio-highlights{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 16px;
}

.bio-pill{
  text-align: center;
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.bio-pill strong{
  display:block;
  font-family: "Playfair Display", serif;
  letter-spacing: .06em;
}

.bio-pill span{
  display:block;
  opacity: .75;
  font-size: .9rem;
  margin-top: 4px;
}

/* Pull quote */
.bio-quote{
  margin: 16px 0 18px;
  padding: 14px 16px;
  border-left: 3px solid rgba(207,164,59,.95);
  background: rgba(255,255,255,.35);
  border-radius: 14px;
  font-style: italic;
}

/* Premium CTA only for this page */
.bio-cta{
  border-radius: 999px !important;
  padding: 14px 26px !important;
  background: linear-gradient(135deg, rgba(255,255,255,.85), rgba(243,230,200,.55)) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  letter-spacing: .12em;
  transition: transform .25s ease, box-shadow .25s ease;
}

.bio-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0,0,0,.16);
}

/* Mobile spacing fix */
@media (max-width: 768px){
  .bio-card{ padding: 22px; }
  .bio-highlights{ grid-template-columns: 1fr; }
}


/* GOLD HOVER FOR CONSULTATION BUTTON */

.bio-cta:hover{
  background: linear-gradient(135deg,#cfa43b,#fff1b8,#cfa43b) !important;
  color: #000 !important;
  border-color: #cfa43b !important;
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(207,164,59,.35);
}




/* ===== PERFECT DROP CAP ALIGNMENT ===== */

.bio-text p{
  clear: both;
}

.bio-text p::first-letter{
  font-family: "Playfair Display", serif;
  float: left;

  font-size: 3.6em;
  line-height: .75;

  margin-right: 10px;
  margin-top: 0;

  transform: translateY(-6px);   /* MOVE LETTER UP */

  color: #000;
}



/* ===== DROP CAP – NOT BOLD ===== */

.bio-text p{
  clear: both;
}

.bio-text p::first-letter{
  font-family: "Playfair Display", serif;
  font-weight: 300;              /* REMOVE BOLD */
  float: left;

  font-size: 2.6em;
  line-height: .75;

  margin-right: 10px;
  margin-top: 0;

  transform: translateY(-8px);

  color: #000;
}






.credit-chips{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}

.credit-chips span{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(207,164,59,.22);
  color: rgba(0,0,0,.78);
  font-weight: 600;
  letter-spacing: .03em;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .2s ease, background .2s ease;
}

.credit-chips span:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.75);
}





/* ===== EXPERIENCE BADGE ===== */

.experience-wrap{
  position: relative;
}

.experience-badge{
  position: absolute;
  bottom: 18px;
  right: 18px;

  padding: 10px 18px;

  background: linear-gradient(135deg,#cfa43b,#fff1b8,#cfa43b);
  color: #111;

  font-family: "Playfair Display", serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;

  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* mobile */
@media(max-width:600px){
  .experience-badge{
    font-size: 11px;
    padding: 8px 14px;
  }
}



/* FIX: make About photo area a normal card size */
.bio-image-placeholder{
  width: min(520px, 100%);
  height: 520px;
  border-radius: 22px;
  overflow: hidden;
  margin: 0;
  position: relative;
}

/* show more of the face */
.headshot-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%; /* adjust: 20% = higher, 40% = lower */
}

/* badge position */
.experience-badge{
  bottom: 18px;
  right: 18px;
}



.experience-wrap{
  position: relative;
}

.experience-badge{
  position: absolute;
  right: 18px;
  bottom: 18px;

  background: #cfa43b;
  color: #111;
  padding: 12px 18px;
  border-radius: 999px;

  font-family: "Playfair Display", serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500; /* not bold */

  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}




/* GOLD FRAME FOR EACH BEFORE-AFTER BOX */

.before-after {
  position: relative;
  padding: 6px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    #8e6f2c,
    #f6e27a,
    #bfa14a,
    #fff1b8,
    #8e6f2c
  );

  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  width: 100%;
  max-width: 220px;
}

/* IMAGES INSIDE FRAME */

.before-after img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

/* MOBILE */

@media (max-width:768px){
  .before-after{
    max-width:160px;
    padding:5px;
  }
}

@media (max-width:480px){
  .before-after{
    max-width:140px;
    padding:4px;
  }
}






.before-after {
  position: relative;
  padding: 10px; /* thicker gold frame */
  border-radius: 24px;

  background: linear-gradient(
    145deg,
    #8e6f2c,
    #f6e27a,
    #bfa14a,
    #fff1b8,
    #8e6f2c
  );

  box-shadow: 0 10px 26px rgba(0,0,0,.25);

  width: 100%;
  max-width: 340px;   /* BIGGER desktop size */
}

/* Images */

.before-after img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

/* Tablets */

@media (max-width: 900px){
  .before-after{
    max-width:260px;
    padding:8px;
  }
}

/* Phones */

@media (max-width:600px){
  .before-after{
    max-width:200px;
    padding:6px;
  }
}




.photo-340x270{
  position: relative;
  width: 340px;
  height: 270px;
  border-radius: 18px;
  overflow: hidden;
}

/* image */

.photo-340x270 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* BEFORE badge */

.before-badge{
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e8b3aa;
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 6px;
  text-transform: uppercase;
}


/* =========================
   MOBILE MENU (Hamburger)
========================= */

/* hidden by default */
.mobile-menu{
  display: none;
  max-width: 1100px;
  margin: 10px auto 0;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.mobile-menu a{
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 700;
}

.mobile-menu a:hover{
  background: rgba(218,119,196,0.10);
}

/* highlight current page */
.mobile-menu a.active{
  outline: 2px solid rgba(218,119,196,0.35);
  background: rgba(218,119,196,0.08);
}

/* only show hamburger + mobile menu on smaller screens */
@media (max-width: 900px){
  /* hide the desktop nav lists on mobile */
  .nav-bar .nav-list{
    display: none;
  }

  /* show hamburger */
  .menu-toggle{
    display: inline-flex;
  }

  /* show the menu when active */
  .mobile-menu.is-open{
    display: block;
  }
}




/* ===========================
   LUXURY BOOK NOW BUTTON
   (FINAL – SAFE OVERRIDE)
=========================== */

.btn-book{
  border-radius: 999px;            /* pill shape */
  padding: 16px 40px;
  letter-spacing: .18em;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* soft gold glow frame */
.btn-book::before{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius:999px;
  border: 2px solid rgba(207,164,59,.9);
  box-shadow: 0 0 0 rgba(207,164,59,0);
  transition: box-shadow .4s ease;
  pointer-events:none;
}

/* hover lift + glow */
.btn-book:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.btn-book:hover::before{
  box-shadow: 0 0 28px rgba(207,164,59,.55);
}

/* subtle luxury shine sweep */
.btn-book::after{
  content:"";
  position:absolute;
  top:-60%;
  left:-40%;
  width:40%;
  height:220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,241,184,.75),
    transparent
  );
  transform: rotate(18deg);
  opacity:0;
  transition: opacity .2s ease, left .6s ease;
}

.btn-book:hover::after{
  opacity:1;
  left:120%;
}




/* =========================
   ABOUT PAGE – CONSULTATION BUTTON SPACING
========================= */

.bio-text .bio-cta{
  display: inline-block;   /* ensures margin applies correctly */
  margin-top: 100px;        /* adjust: 40–56px is luxury range */
}







/* ================================
   LUXURY GOLD FRAMES – HOME BLOCKS
   ================================ */

.gold-frame{
  position: relative;
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.65);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}





.gold-frame::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 8px;
  background: linear-gradient(
    180deg,
    #fff3c4 0%,
    #e8c873 25%,
    #caa24a 55%,
    #f3d98f 75%,
    #fff3c4 100%
  );

  /* Standard property (fixes VS Code warning) */
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  /* WebKit version (Safari/Chrome) */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  /* Composite modes */
  mask-composite: exclude;
  -webkit-mask-composite: xor;

  pointer-events: none;
  z-index: 1;
}






/* Inner highlight lip */
.gold-frame::after{
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow:
    inset 0 0 0 1px rgba(120,90,20,0.25),
    inset 0 0 20px rgba(255,215,120,0.2);
  pointer-events: none;
  z-index: 2;
}

/* Keep content above frame */
.gold-frame > *{
  position: relative;
  z-index: 3;
}

/* Match image corners to frame */
.gold-frame img{
  border-radius: 14px;
}

/* Caption polish */
.home-image-item p{
  margin-top: 18px;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}



.home-image-grid{
  border-top: none;
}


.robot-panel{
  position: fixed !important;
  z-index: 99999 !important;
}

.robot-body, .robot-intro, .robot-answer, .robot-chip, .robot-link, .robot-header{
  color: #111 !important;
  opacity: 1 !important;
}



/* ===== APPOINTMENTS BUTTON – SMALL PILL FIX ===== */
.btn-submit{
  padding: 10px 22px !important;   /* half the height + width */
  border-radius: 999px !important; /* true pill */
  font-size: 0.85rem;              /* smaller, elegant */
  letter-spacing: 0.14em;          /* still luxury */
  max-width: 420px;                /* prevents it from stretching */
  margin: 18px auto 0;             /* center it */
  display: block;
}


/* ===========================
   CELEBRITY CREDITS – LUXURY UPGRADE
=========================== */

/* Section title polish */
.team-section h3{
  text-align: center;
  font-family: "Playfair Display", serif;
  letter-spacing: .22em;
  font-size: 1.15rem;
  margin-bottom: 28px;
  position: relative;
}

/* gold divider under title */
.team-section h3::after{
  content:"";
  display:block;
  width:90px;
  height:2px;
  margin:14px auto 0;
  background: linear-gradient(90deg,#cfa43b,#fff1b8,#cfa43b);
}

/* Chip container spacing */
.credit-chips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  perspective: 1200px;
}

/* Individual chip = luxury badge */
.credit-chips span{
  position: relative;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: "Playfair Display", serif;
  font-size: .95rem;
  letter-spacing: .04em;

  background:
    linear-gradient(135deg, rgba(255,255,255,.85), rgba(243,230,200,.65));
  border: 1px solid rgba(207,164,59,.55);

  box-shadow:
    0 10px 24px rgba(0,0,0,.10),
    inset 0 0 0 1px rgba(255,255,255,.45);

  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    background .45s ease;
}

/* subtle gold shimmer ring */
.credit-chips span::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background: linear-gradient(135deg,#cfa43b,#fff1b8,#cfa43b);
  opacity:0;
  transition:.45s ease;
  z-index:-1;
}

/* hover = lift + glow */
.credit-chips span:hover{
  transform: translateY(-6px) scale(1.05) rotateX(6deg);
  box-shadow:
    0 18px 45px rgba(0,0,0,.18),
    0 0 22px rgba(207,164,59,.35);
}

.credit-chips span:hover::before{
  opacity:1;
}

/* subtle floating animation (slow + classy) */
.credit-chips span{
  animation: floatChip 9s ease-in-out infinite;
}
.credit-chips span:nth-child(odd){
  animation-delay: -4s;
}

@keyframes floatChip{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}

/* Mobile refinement */
@media (max-width:600px){
  .credit-chips span{
    font-size: .85rem;
    padding: 10px 16px;
  }
}





/* Mobile tap-to-flip */
@media (max-width: 768px){
  .service-flip.is-flipped .service-flip-inner{
    transform: rotateY(180deg);
  }
}






@media (max-width: 620px){
  .services-section{
    padding-left: 16px;
    padding-right: 16px;
  }
}







/* ===============================
   LUXURY MOVING IMAGE VIDEO
================================= */

.luxury-video-section{
  max-width: 1100px;
  margin: 80px auto;
  padding: 12px;
  border-radius: 28px;

  /* gold luxury frame */
  background: linear-gradient(
    145deg,
    #8e6f2c,
    #f6e27a,
    #bfa14a,
    #fff1b8,
    #8e6f2c
  );

  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.luxury-video-container{
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 22px;
}

.luxury-video-container img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlide 20s infinite;
}

/* stagger timing */
.luxury-video-container img:nth-child(1){ animation-delay: 0s; }
.luxury-video-container img:nth-child(2){ animation-delay: 5s; }
.luxury-video-container img:nth-child(3){ animation-delay: 10s; }
.luxury-video-container img:nth-child(4){ animation-delay: 15s; }

@keyframes fadeSlide{
  0% { opacity:0; transform:scale(1); }
  5% { opacity:1; }
  25% { opacity:1; transform:scale(1.08); } /* slow zoom */
  30% { opacity:0; }
  100% { opacity:0; }
}

/* Mobile */
@media(max-width:768px){
  .luxury-video-container{
    height: 350px;
  }
}













/* ✅ NEW: Gold frame wrapper to match your gallery frames */
.video-frame{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;                /* thickness of the gold frame */
  border-radius: 24px;

  background: linear-gradient(
    145deg,
    #8e6f2c,
    #f6e27a,
    #bfa14a,
    #fff1b8,
    #8e6f2c
  );

  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}














@media (max-width: 900px){
  .nav-bar{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo-container{ order: 1; }
  .menu-toggle{ order: 2; }
}










/* ==========================
   MOBILE FIX PACK (PASTE LAST)
   ========================== */

/* 1) Prevent horizontal scrolling (most common “not responsive” symptom) */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}

/* 2) Force nav to behave on mobile even if desktop grid rules exist */
@media (max-width: 900px){

  /* undo any desktop grid nav that squeezes layout */
  .nav-bar{
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 16px !important;
    gap: 10px !important;
  }

  /* hide desktop link lists */
  .nav-bar .nav-list{
    display: none !important;
  }

  /* show hamburger */
  .menu-toggle{
    display: inline-flex !important;
  }

  /* keep logo from being huge on phones */
  .nav-logo{
    width: 70px !important;
    height: 70px !important;
    transform: none !important;
  }
  .nav-logo img{
    width: 70px !important;
    height: 70px !important;
    object-fit: contain !important;
  }

  /* mobile dropdown menu sizing */
  .mobile-menu{
    display: none;
    width: calc(100% - 20px);
    margin: 10px auto 0;
  }
  .mobile-menu.is-open{
    display: block !important;
  }
}

/* 3) Hero height fix for phones (120vh is too tall on mobile) */
@media (max-width: 700px){
  .hero-section{
    height: 75vh !important;
    min-height: 520px; /* optional safety */
  }
}






@media (max-width: 900px){
  .nav-bar{
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 16px !important;
    gap: 10px !important;
  }

  .nav-bar .nav-list{
    display: none !important;
  }

  .nav-logo-container{
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    justify-self: auto !important;
    place-items: unset !important;
    margin: 0 !important;
    order: 1;
  }

  .nav-logo{
    width: 70px !important;
    height: 70px !important;
    transform: none !important;
    margin: 0 !important;
  }

  .nav-logo img{
    width: 70px !important;
    height: 70px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .menu-toggle{
    display: inline-flex !important;
    order: 2;
    margin-left: auto !important;
  }

  .mobile-menu{
    width: calc(100% - 20px);
    margin: 10px auto 0;
  }

  .mobile-menu.is-open{
    display: block !important;
  }
}












