:root {
    --bg: #111;
    --text: #fff;
    --accent: #C6A969;
    --card: #1a1a1a;
  }
  
  body.light {
    --bg: #f5f5f5;
    --text: #111;
    --card: #ffffff;
  }
  
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: 0.3s;
  }
  
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  
  /* NAVBAR */
  .navbar {
    position: fixed;
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
  }
  
  .logo { font-size: 1.5rem; font-weight: bold; }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .nav-links a, #themeToggle {
    color: var(--text);
    text-decoration: none;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; }
  
  /* HERO */
  .hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .hero h1 { font-size: 2.5rem; }
  
  .btn-gold {
    background: var(--accent);
    color: #111;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    border: none;
  }
  
  .btn-outline {
    border: 2px solid var(--text);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--text);
    text-decoration: none;
  }
  

  /* HERO VIDEO BACKGROUND */
.aesthetic-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: -1;
}

.hero-center h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

.hero-center p {
  margin: 15px 0 25px;
  font-weight: 300;
}



/* STUDIO INTRO */
.studio-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 100px 10%;
  gap: 50px;
}

.intro-text {
  flex: 1;
  min-width: 280px;
}

.intro-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.intro-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.img-box {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  transition: 0.4s ease;
}

.img-box:hover {
  transform: scale(1.05);
}

.img-a { background-image: url('https://images.unsplash.com/photo-1526178613658-3f1622045557'); }
.img-b { background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee'); }

/* MOBILE */
@media(max-width: 768px) {
  .camera-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-intro {
    flex-direction: column;
    text-align: center;
  }

  .hero-center h1 {
    font-size: 2rem;
  }
}

  /* ABOUT */
 

  /* Portfolio*/

  .testimonials {
    padding: 100px 5%;
    background: var(--bg);
    color: var(--text);
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
  }
  
  /* FILM GRAIN */
  .grain {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.15;
    z-index: 2;
  }
  
  .testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
    cursor: grab;
  }
  
  .testimonial-card {
    min-width: 300px;
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    transition: 0.4s ease;
    text-align: center;
  }
  
  .testimonial-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s ease;
  }
  
  .testimonial-card h3 {
    margin: 15px 0 5px;
    font-family: 'Playfair Display', serif;
  }
  
  .testimonial-card p {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  /* HOVER */
  .testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(198,169,105,0.35);
  }
  
  .testimonial-card:hover img {
    transform: scale(1.1);
  }
  
  /* NAV BUTTONS */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text);
    font-size: 2.5rem;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
  }
  
  .left { left: 10px; }
  .right { right: 10px; }
  
  /* DOTS */
  .dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
  }
  
  .dots span {
    width: 10px;
    height: 10px;
    background: #777;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .dots span.active {
    background: var(--accent);
    transform: scale(1.4);
  }
  
  /* RESPONSIVE */
  @media(max-width: 900px) {
    .testimonial-card { min-width: 260px; }
  }
  
  @media(max-width: 600px) {
    .testimonial-card { min-width: 90%; }
  }
  
  
  
  /* GALLERY */
  /* GALLERY */
.gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.gallery-card {
  min-width: 32%;
  height: 350px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

/* ARROWS */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
}

.gallery-btn.left { left: 10px; }
.gallery-btn.right { right: 10px; }

.view-more {
  padding-top: 15px;
  padding-right: 10px;
  display: flex;
  justify-content: flex-end;
    
}

/* LIGHTBOX */
/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.lightbox img.zoom {
  transform: scale(1.6);
  cursor: zoom-out;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

/* LIGHTBOX ARROWS */
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 3rem;
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
}

.lb-arrow.left { left: 30px; }
.lb-arrow.right { right: 30px; }

.lb-arrow:hover {
  background: rgba(255,255,255,0.35);
}

/* MOBILE */
@media(max-width:600px){
  .lb-arrow{
    font-size:2.2rem;
    padding:8px 14px;
  }
}



/* RESPONSIVE */
@media(max-width: 900px) {
  .gallery-card { min-width: 48%; }
}

@media(max-width: 600px) {
  .gallery-card { min-width: 90%; }
}

/* Full gallery */

.full-gallery{
  padding: 90px 8%;
  background: #0b0b0b;
  color: #fff;
  text-align: center;
}

.section-title{
  font-size: 2.6rem;
}

.section-subtitle{
  color: #aaa;
  margin-bottom: 50px;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  
}

.gallery-grid img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-grid img:hover{
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* LIGHTBOX */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img{
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;   /* 🔥 THIS IS THE KEY */
  background: #000;
  border-radius: 12px;
}

.lightbox .close{
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

.lb-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 3rem;
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
}

.lb-arrow.left{ left: 30px; }
.lb-arrow.right{ right: 30px; }

/* RESPONSIVE */
@media(max-width:1000px){
  .gallery-grid{ grid-template-columns: repeat(3,1fr); }
}

@media(max-width:700px){
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
}

@media(max-width:500px){
  .gallery-grid{ grid-template-columns: 1fr; }
}


  /* SERVICES */
  .services-section{
    padding: 80px 8%;
    background: #0e0e0e;
    color: #fff;
  }
  
  .section-title{
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .services-slider{
    position: relative;
    overflow: hidden;
  }
  
  .services-track{
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
  }
  
  /* SERVICE CARD */
  .service-card{
    min-width: 32%;
    background: #161616;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
  }
  
  .service-card img{
    width: 100%;
    height: 410px;
    object-fit: cover;
  }
  
  .service-card h3{
    padding: 15px 15px 5px;
    font-size: 1.2rem;
  }
  
  .service-card p{
    padding: 0 15px 20px;
    color: #c9a86a;
    font-weight: 500;
  }
  
  .service-card:hover{
    transform: translateY(-10px);
  }
  
  /* ARROWS */
  .slider-controls{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .slider-controls button{
    background: transparent;
    border: 2px solid #c9a86a;
    color: #c9a86a;
    font-size: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .slider-controls button:hover{
    background: #c9a86a;
    color: #000;
  }
  
  /* RESPONSIVE */
  @media(max-width:900px){
    .service-card{ min-width: 48%; }
  }
  
  @media(max-width:600px){
    .service-card{ min-width: 90%; }
  }
  
  /* why choose us */

  .why-choose{
    padding: 90px 8%;
    background: #0b0b0b;
    color: #fff;
    text-align: center;
  }
  
  .section-title{
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
  
  .section-subtitle{
    color: #aaa;
    margin-bottom: 50px;
  }
  
  .why-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .why-card{
    background: #141414;
    padding: 35px 25px;
    border-radius: 20px;
    transition: 0.4s ease;
  }
  
  .why-card span{
    font-size: 2.5rem;
  }
  
  .why-card h3{
    margin: 15px 0 10px;
    font-size: 1.3rem;
  }
  
  .why-card p{
    color: #bdbdbd;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .why-card:hover{
    transform: translateY(-12px);
    background: linear-gradient(145deg, #1a1a1a, #101010);
  }
  
  /* RESPONSIVE */
  @media(max-width:900px){
    .why-grid{
      grid-template-columns: repeat(2,1fr);
    }
  }
  
  @media(max-width:600px){
    .why-grid{
      grid-template-columns: 1fr;
    }
  }

  /* our team */
  .team-section{
    padding: 90px 8%;
    background: #0e0e0e;
    color: #fff;
    text-align: center;
  }
  
  .section-title{
    font-size: 2.6rem;
    margin-bottom: 8px;
  }
  
  .section-subtitle{
    color: #aaa;
    margin-bottom: 50px;
  }
  
  .team-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
  }
  
  .team-card{
    background: #151515;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s ease;
  }
  
  .team-card img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: 0.4s ease;
  }
  
  .team-card h3{
    margin-top: 18px;
    font-size: 1.2rem;
  }
  
  .team-card p{
    margin-bottom: 20px;
    color: #c9a86a;
    font-size: 0.95rem;
  }
  
  .team-card:hover{
    transform: translateY(-12px);
  }
  
  .team-card:hover img{
    filter: grayscale(0);
    transform: scale(1.05);
  }
  
  /* RESPONSIVE */
  @media(max-width:1000px){
    .team-grid{
      grid-template-columns: repeat(2,1fr);
    }
  }
  
  @media(max-width:600px){
    .team-grid{
      grid-template-columns: 1fr;
    }
  }
  
  /*map*/
  
 .map-container {
     position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  
}

.map-container iframe {
     position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

  
  /* CONTACT */
  .booking-section{
    padding: 100px 8%;
    background: #0c0c0c;
    color: #fff;
  }
  
  .booking-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .booking-left h2{
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
  
  .booking-left p{
    color: #aaa;
    line-height: 1.6;
  }
  
  .booking-form{
    background: #151515;
    padding: 40px;
    border-radius: 25px;
  }
  
  .form-group{
    position: relative;
    margin-bottom: 30px;
  }
  
  .form-group input,
  .form-group select{
    width: 100%;
    padding: 14px 10px;
    background: #151515;  /* black background */
    color: #fff; 
    border: none;
    border-bottom: 1px solid #555;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    transition: 0.3s ease;
  }
  /* HOVER EFFECT */
.custom-select select:hover {
  border-color: #c9a86a;
}

/* FOCUS EFFECT */
.custom-select select:focus {
  border-color: #c9a86a;
  box-shadow: 0 0 10px rgba(201,168,106,0.4);
}

/* OPTIONS STYLE */
.custom-select select option {
  background: #111;
  color: #fff;
  padding: 10px;
}

/* CUSTOM ARROW */
.custom-select::after {
  content: "⌄";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #c9a86a;
  pointer-events: none;
  transition: 0.3s;
}

/* ARROW ROTATE ON FOCUS */
.custom-select select:focus + ::after {
  transform: translateY(-50%) rotate(180deg);
}
  
  .form-group select option{
    background: #151515;
    color: #fff;
  }


  .form-group label{
    position: absolute;
    top: 14px;
    left: 10px;
    color: #888;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.3s ease;
  }
  
  .form-group input:focus + label,
  .form-group input:valid + label,
  .form-group select:focus + label,
  .form-group select:valid + label{
    top: -10px;
    font-size: 0.75rem;
    color: #c9a86a;
  }
  
  textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    resize: none;
    background: #111;
    color: #fff;
  }
  
  textarea:focus {
    outline: none;
    border-color: #c19b76;
  }

  /* TEXTAREA FIX */
.textarea-group {
  margin-bottom: 30px;
}

.textarea-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #c9a86a;
}

.textarea-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 15px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  resize: none;
  min-height: 120px;
  outline: none;
  transition: 0.3s ease;
}

.textarea-group textarea:focus {
  border-color: #c9a86a;
  box-shadow: 0 0 10px rgba(201,168,106,0.3);
}



  .submit-btn{
    width: 100%;
    padding-top: 30px;
    padding: 15px;
    border: none;
    background: #c9a86a;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .submit-btn:hover{
    background: #fff;
  }
  
  /* RESPONSIVE */
  @media(max-width:900px){
    .booking-container{
      grid-template-columns: 1fr;
    }
  }
  
  
  /* FOOTER */
  footer {
    text-align: center;
    padding: 20px;
    background: #000;
  }
  
  /* SCROLL ANIMATION */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* MOBILE */
  @media(max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background: var(--bg);
      flex-direction: column;
      width: 200px;
      padding: 20px;
      display: none;
    }
  
    .nav-links.show { display: flex; }
  
    .menu-toggle { display: block; }
  }


  /* footer */

  .footer{
    background:#0f0f0f;
    color:#fff;
    padding:60px 10%;
  }
  
  .footer-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
  }
  
  .footer h2{
    color:#c9a86a;
  }
  
  .footer h3{
    margin-bottom:15px;
    color:#c9a86a;
  }
  
  .footer p{
    color:#ccc;
    line-height:1.6;
  }
  
  .footer-links ul{
    list-style:none;
    padding:0;
  }
  
  .footer-links ul li{
    margin-bottom:10px;
  }
  
  .footer-links ul li a{
    text-decoration:none;
    color:#ccc;
    transition:0.3s;
  }
  
  .footer-links ul li a:hover{
    color:#c9a86a;
  }
  
  .social-icons{
    margin-top:15px;
  }
  
  .social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:45px;
    height:45px;
    border-radius:50%;
    margin-right:15px;
    font-size:20px;
    color:#fff;
    background:#1a1a1a;
    transition:0.3s ease;
  }
  
  .social-icons a:hover{
    transform:translateY(-5px);
  }
  
  /* WhatsApp Color */
  .social-icons .whatsapp:hover{
    background:#25D366;
  }
  
  /* Instagram Gradient */
  .social-icons .instagram:hover{
    background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
  }
  
  .footer-bottom{
    text-align:center;
    margin-top:40px;
    border-top:1px solid #222;
    padding-top:20px;
    color:#777;
  }
  
  /* Responsive */
  @media(max-width:768px){
    .footer-container{
      flex-direction:column;
    }
  }