/* ------------------------------------------------------------------ */
/*                       B R O W N   F A I R Y                        */
/* ------------------------------------------------------------------ */

/* ---------- RESET ---------- */
*,*::before,*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ---------- GLOBAL ---------- */
body{
  font-family:'Poppins',sans-serif;
  color:#000;
  overflow-x:hidden;
  background:#000;               /* fallback while video loads */
}
a{
  color:inherit;
  text-decoration:none;
}

/* ---------- BACKGROUND VIDEO ---------- */
#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}



/* ---------- HEADER ---------- */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px 0 20px;
  height:96px;
  background:#000;
  position:sticky;
  z-index:20;
}

/* Logo container */
.logo-container{
  height:100%;
  display:flex;
  align-items:center;
  padding:0;
  margin-left:5px;                /* keep logo away from edge */
}
/* Logo image */
.studio-logo{
  height:100%;
  width:auto;
  object-fit:contain;
  filter:brightness(1.35) contrast(1.15) saturate(1.3);
}

/* ---------- NAVIGATION ---------- */
nav ul{
  display:flex;
  gap:32px;
  list-style:none;
}
nav li{position:relative;}

nav>ul>li>a{
  font:600 14px/1 'Poppins',sans-serif;
  text-transform:uppercase;
  letter-spacing:.5px;
  padding:38px 4px;
  color:#fff;
  transition:color .25s;
}
nav>ul>li>a:hover{
  color:#FFD700;
}
nav>ul>li>a:hover::after{
  content:'';
  display:block;
  height:2px;
  background:#FFD700;
  margin-top:4px;
}
/* chevron animation */
.chev{
  font-size:9px;
  margin-left:4px;
  transition:transform .3s;
}
.has-dropdown:hover .chev{
  transform:rotate(180deg);
}

/* ---------- DROPDOWN (Services) ---------- */
.dropdown{
  position:absolute;
  top:100%;
  left:0;
  display:none;                   /* shown on hover */
  flex-direction:column;
  min-width:240px;                /* wider, like reference */
  padding:0;
  gap:0;
  background:#fff;
  border:1px solid #d9d9d9;
  border-radius:2px;
  box-shadow:0 4px 14px rgba(0,0,0,.12);
  z-index:50;
}
.dropdown li{
  list-style:none;
  margin:0;
  padding:0;
}
.dropdown a{
  display:block;
  padding:8px 26px;               /* comfy vertical rhythm */
  font:500 15px/1.25 'Poppins',sans-serif;
  color:#111;
  white-space:nowrap;
  background:transparent;
  border:none;
  transition:background .18s ease,color .18s ease;
}
.dropdown a:hover,
.dropdown a:focus,
.dropdown a.active,
.dropdown a[aria-current="page"]{
  background:#fdf4f3;             /* rosy highlight */
  color:#FFD700;
}
.has-dropdown:hover .dropdown{
  display:flex;
}

/* ---------- HERO ---------- */
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding-top:96px;
  text-align:center;
  color:#fff;
}
.world-class{
  font-family:'Dancing Script',cursive;
  font-size:86px;
  font-weight:700;
  text-shadow:1px 1px 6px rgba(0,0,0,.6);
  line-height:.9;
  margin-bottom:6px;
}
.world-class .wc-word:not(:last-child){
  margin-right:24px;
}
.hero h2{
  font-size:48px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#FFD700;
  text-transform:uppercase;
  margin:18px 0 10px;
}

.hero h1 {
  
  font-size: 84px;
  color: #DAA520;
  margin-bottom: 12px;
}



.hero p{
  font-size:20px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#e0e0e0;
}

/* ---------- BUTTONS ---------- */
.hero-buttons{
  margin-top:42px;
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  justify-content:center;
}
.hero-buttons a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:18px;
  padding:14px 38px;
  border-radius:50px;
  font-size:18px;
  font-weight:600;
  letter-spacing:1px;
  box-shadow:0 4px 15px rgba(0,0,0,.2);
  transition:transform .3s,box-shadow .3s;
}
.hero-buttons a::before{
  content:'';
  width:38px;
  height:2px;
  background:currentColor;
}
.consult{
  background:linear-gradient(135deg,#FFD700,#FFD700);
  color:#000;
}
.book{
  background:transparent;
  color:#fff;
  border:2px solid #FFD700;
}
.hero-buttons a:hover{
  transform:translateY(-3px.co) scale(1.03);
  box-shadow:0 6px 20px rgba(246,207,200,.4);
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px){
  header{
    padding:0 28px;
    height:82px;
  }
  nav ul{gap:24px;}
  .studio-logo{height:70%;}
}
@media(max-width:768px){
  nav ul{display:none;}
  .world-class{font-size:64px;}
  .hero h2{font-size:36px;}
  .hero p{font-size:16px;}
}
/* ---------- FOLLOW‑US ---------- */
#follow-us{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:80px;                         /* wider gap */
  padding:120px 6%;
  
  position:relative;
}
/* subtle overlay for better contrast */

.feed-grid{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:repeat(3,240px);
  grid-auto-rows:240px;
  gap:24px;
}
.feed-grid img{
  width:100%;height:100%;object-fit:cover;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,.25);
  transition:transform .35s,box-shadow .35s;
}
.feed-grid img:hover{
  transform:scale(1.05);
  box-shadow:0 12px 28px rgba(0,0,0,.35);
}
.follow-text{
  position:relative;z-index:1;
  max-width:540px;color:#fff;text-align:left;
}
.follow-text h3{
  font-family:'Dancing Script',cursive;
  font-size:72px;
  color:#FFD700;
  margin:0 0 24px;
}
.follow-text .handle{
  font-size:40px;font-weight:700;letter-spacing:.5px;
  color:#f8cfc8;
  border-bottom:8px solid #f8cfc8;
  display:inline-block;
  margin-bottom:54px;
}
.social-links{display:flex;gap:48px}
.social-links a{
  display:inline-flex;align-items:center;gap:12px;
  font:500 24px 'Poppins',sans-serif;
  color:#fff;transition:color .3s;
}
.social-links a i{font-size:30px}
.social-links a:hover{color:#FFD700}

/* ---------- MOBILE STACK ---------- */
@media(max-width:768px){
  #follow-us{flex-direction:column;gap:50px;padding:80px 5%}
  .feed-grid{grid-template-columns:repeat(2,160px);grid-auto-rows:160px}
  .follow-text h3{font-size:48px}
  .follow-text .handle{font-size:30px}
  .social-links{flex-direction:column;gap:24px}
}
/* --- Contact Info (horizontal) --- */
#contact-info-section {
  background: #111;        /* same dark background from your screenshot */
  color: #fff;
  padding: 60px 20px;
}

.contact-info {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;        /* keeps it responsive */
}

.info-block {
  flex: 1 1 260px;        /* grows but never shrinks below ~260 px */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* bits & pieces */
.icon {
  font-size: 28px;
  color: #f1b8b8;        /* soft peach to match your brand */
}

.label { font-weight: 600; }

.value,
.value a {
  color: #ccc;
  font-size: 15px;
  text-decoration: none;
}

/* --- Mobile: stack vertically --- */
@media (max-width: 767px) {
  .contact-info {
    flex-direction: column;
    gap: 24px;
  }
}
/* --- about section --- */


/* Navbar */
/* ---------- Navbar ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #000; /* Black background */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  height: 90px;              /* Increase height */
  max-width: 220px;          /* Adjust width as needed */
  object-fit: contain;
  padding-left: 10px;        /* Space from the left */
  display: block;
}




.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: #fff; /* White text */
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color:#FFD700; /* Pink hover */
}

.navbar a.active {
  border-bottom: 2px solid #FFD700;
}

/* ---------- Hero Section ---------- */
.about-hero {
  background-color: #f9f2f4;
  padding: 140px 0 80px; /* Extra top padding for fixed navbar */
  text-align: center;
}

.about-heading {
  font-size: 48px;
  font-weight: bold;
  color: #222;
}

/* ---------- About Section ---------- */
.about-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #fff;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color:#fff;;
  margin-bottom: 16px;
}

/* ---------- Responsive (Optional) ---------- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .about-container {
    flex-direction: column;
  }

  .about-hero {
    padding: 120px 20px 60px;
  }
}
/* ======= Dropdown Styles ======= */
.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 10px 0;
  min-width: 220px;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown li a:hover {
  background-color: #f3f3f3;
  color:#FFD700; /* Your brand's pink shade */
}






.book {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid gold;
  color: gold;
  background-color: transparent;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: none;
}

/* On hover – subtle background tint only */
.book:hover {
  background-color: rgba(255, 215, 0, 0.1); /* gold with transparency */
  color: gold;
}

/* On click/focus – white background + black text */
.book:focus,
.book:active {
  background-color: white !important;
  color: black !important;
  box-shadow: none !important;
  outline: none !important;
}

