/* =========================
   BUTTONS
========================= */
.btn {
    padding: 14px 28px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.hero {
    height: 100vh;
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.85)
    ),
    url("images/bg.PNG") center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-light {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn:hover {
    opacity: 0.85;
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* GLOBAL DARK THEME */
html, body {
    background: #000;
    color: #fff;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #000; /* black navbar */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}


.navbar .logo img {
    height: 48px;          /* ⬅️ adjust: 42–55px if needed */
    width: auto;
    display: block;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s;    
}

.nav-links li a:hover {
    background: #ffd700;
    color: #000;
}

.nav-links li a.active {
    background: #ffd700;
    color: #000;
}

/* HERO SECTION */
.hero {
    background: url("images/bg.png") center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.68); /* dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

/* BUTTONS */
.btn {
    padding: 12px 24px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s;
}

.btn-light {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn:hover {
    opacity: 0.8;
}

/* FEATURED SECTION */
.featured {
    text-align: center;
    padding: 60px 40px;
    background: #000;
}

.featured h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

/* CONTACT PAGE BUTTONS */
.contact-section {
    text-align: center;
    padding: 80px 20px;
}

.contact-buttons .btn {
    background: #ffd700;
    color: #000;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

/* ABOUT & OTHER PAGES */
.about-content,
.portfolio-section,
.services,
.behind-scenes {
    background: #000;
    color: #fff;
    padding: 80px 40px;
}

.about-details h2,
.portfolio-section h2,
.services h2,
.behind-scenes h2 {
    color: #ffd700;
}



.service-card p,
.video-card p,
.bts-card p {
    color: #ccc;
}
video {
    width: 100%;
    height: auto;
    max-height: 300px;
    display: block;
    background-color: black;
    border-radius: 12px;
}

video {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}
/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html, body {
    background: #000;
    color: #fff;
    scroll-behavior: smooth;
}

/* =========================
   GLOBAL SPACING
========================= */
section {
    padding: 120px 80px;
    background: var(--bg-main);
}
section:nth-of-type(even) {
    background: var(--bg-section);
}

@media (max-width: 768px) {
    section {
        padding: 80px 24px;
    }
}

/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #333;
}

.navbar .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: #ffd700;
    color: #000;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: url("images/bg.png") center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.68);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #ddd;
}

.portfolio-hero {
    padding: 160px 24px 120px;
    text-align: center;
}

.portfolio-hero h1 {
    margin-bottom: 20px;
}

.portfolio-hero p {
    max-width: 600px;
    margin: 0 auto;
}


/* =========================
   HEADINGS
========================= */
h2 {
    font-size: 2.4rem;
    margin-bottom: 65px;
    position: relative;
    letter-spacing: -0.5px;
    color: #ffd700;
}

h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #ffd700;
    display: block;
    margin-top: 14px;
}

/* =========================
   GALLERY
========================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

/* =========================
   VIDEO PORTFOLIO
========================= */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.video-card {
    background: #111;
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

.video-card p {
    margin-top: 18px;
    font-weight: 500;
    color: #ccc;
    letter-spacing: 0.3px;
}

video {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: 12px;
    background: #000;
}

/* =========================
   SERVICE / INFO CARDS
========================= */
.service-card,
.bts-card {
    background: #111;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 10px rgba(255,255,255,0.05);
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    text-align: center;
}

.contact-buttons .btn {
    margin: 10px;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

/* =========================
   CTA SECTION
========================= */
.cta {
    text-align: center;
    background: linear-gradient(180deg, #000, #111);
}

.cta h2 {
    margin-bottom: 30px;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #000;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #bbb;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeUp 0.9s ease both;
}
/* =========================
   ABOUT HERO
========================= */
.about-hero {
    height: 70vh;
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)
    ),
    url("../images/about-hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.2rem;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #ddd;
}

/* =========================
   ABOUT MAIN SECTION
========================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.about-details h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.about-details h2 span {
    color: #ffd700;
}

.about-details p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* =========================
   SERVICES
========================= */
.services {
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card h3 {
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.service-card p {
    line-height: 1.7;
}

/* =========================
   BEHIND THE SCENES
========================= */
.behind-scenes {
    text-align: center;
}

.behind-scenes p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 50px;
}

.bts-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.bts-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bts-card img:hover {
    transform: scale(1.06);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

.bts-card p {
    margin-top: 14px;
    font-size: 0.95rem;
}

/* =========================
   RESPONSIVE FIXES
========================= */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-details {
        margin-top: 20px;
    }
}
/* =========================
   CONTACT PAGE
========================= */
.contact-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle at top,
        #111 0%,
        #000 60%
    );
    text-align: center;
}

.contact-container {
    max-width: 700px;
    padding: 60px 40px;
    background: rgba(17,17,17,0.9);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    animation: fadeUp 0.9s ease both;
}

.contact-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-container p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* =========================
   CONTACT BUTTONS
========================= */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.contact-buttons .btn {
    min-width: 260px;
    padding: 16px 26px;
    font-size: 1rem;
}

/* WhatsApp button polish */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
}

.whatsapp-btn:hover {
    opacity: 0.9;
}

/* =========================
   EXTRA INFO
========================= */
.extra-info {
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 10px;
}

/* =========================
   MOBILE FIXES
========================= */
@media (max-width: 768px) {
    .contact-container {
        padding: 45px 24px;
    }

    .contact-container h1 {
        font-size: 2rem;
    }

    .contact-buttons .btn {
        width: 100%;
    }
}
/* =========================
   BOOKING HERO
========================= 
.booking-hero {
    height: 50vh;
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)
    ),
    url("../images/logo1.PNG") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
*/
.booking-text h1 {
    font-size: 3.2rem;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.booking-text p {
    font-size: 1.15rem;
    color: #ddd;
}

/* =========================
   BOOKING INFO CARD
========================= */
.booking-info {
    display: flex;
    justify-content: center;
}

.booking-container {
    max-width: 720px;
    width: 100%;
    text-align: center;
    background: rgba(17,17,17,0.95);
    padding: 70px 50px;
    border-radius: 22px;
    margin-top: -120px;
    box-shadow: 0 35px 90px rgba(0,0,0,0.75);
    animation: fadeUp 0.9s ease both;
}

.booking-container h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.booking-container p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* =========================
   BOOKING BUTTONS
========================= */
.booking-container .btn {
    display: inline-block;
    margin: 10px 12px;
    min-width: 260px;
    padding: 16px 30px;
    font-size: 1rem;
}

/* WhatsApp button polish */
.booking-container .whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
}

.booking-container .whatsapp-btn:hover {
    opacity: 0.9;
}

/* =========================
   EXTRA INFO
========================= */
.booking-container .extra-info {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

/* =========================
   MOBILE FIXES
========================= */
@media (max-width: 768px) {
    .booking-hero {
        height: 55vh;
    }

    .booking-text h1 {
        font-size: 2.4rem;
    }

    .booking-container {
        padding: 50px 26px;
        margin-top: -80px;
    }

    .booking-container .btn {
        width: 100%;
    }
}
.video-card {
    background: #111;
    border-radius: 16px;
    padding: 20px;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Center images inside cards */
.bts-card {
    display: flex;
    flex-direction: column;
    align-items: center;   /* horizontal center */
    justify-content: center;
    text-align: center;
    padding: 24px;
}

/* Force same image size */
.bts-card img {
    width: 100%;
    max-width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}
.bts-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    justify-items: center; /* THIS centers cards */
}
.gallery {
    margin-bottom: 80px;
    gap: 32px;
}
.video-grid {
    margin-top: 40px;
    margin-bottom: 20px;
}
.video-card p {
    margin-top: 18px;
}
.videography {
    padding-bottom: 140px;
}
footer {
    margin-top: 120px;
    padding: 40px 20px;
}
.category h3 {
    margin-bottom: 40px;
}
.hero::before {
    pointer-events: none;
}
/*.portfolio-hero {
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)),
        url("images/logo.png");
}

 =========================
   BACKGROUND FOR ALL PAGES
   (EXCEPT INDEX)
========================= */
.logo img {
    height:30px;        /* increase/decrease as you like */
    width: auto;
    display: block;
}


.video-card video {
    width: 100%;
    height: 260px;          /* forces poster to show */
    object-fit: cover;
    border-radius: 14px;
    background-color: #000;
}
.video-card video {
    width: 100%;
    height: 260px;          /* forces poster to show */
    object-fit: cover;
    border-radius: 14px;
    background-color: #000;
}
.page-hero,
.portfolio-hero,
.booking-hero,
.contact-hero,
.about-hero {
    height: 40vh;
    min-height: 260px;

    background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85));

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* =========================
   LOGO — TOP LEFT FIX
========================= */
/* =========================
   FINAL NAVBAR LOGO FIX
========================= */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Force logo to the LEFT */
.navbar .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

/* FINAL logo size */
.navbar .logo img {
    height: 36px;          /* 🔥 adjust 32–40px if needed */
    width: auto;
    max-width: 140px;
    object-fit: contain;
}
/* =========================
   PORTFOLIO HERO TEXT FIX
========================= */
.portfolio-hero,
.page-hero {
    display: flex;
    flex-direction: column;   /* stack text vertically */
    align-items: flex-start;  /* align to left */
    justify-content: center;
    padding-left: 60px;       /* spacing from left */
    text-align: left;
}

.portfolio-hero h1 {
    margin-bottom: 12px;
}

.portfolio-hero p {
    max-width: 700px;
    color: #ccc;
}
/* =========================
   NAVBAR LOGO – FINAL CLEAN FIX
========================= */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar .logo img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.booking-hero {
  min-height: 50vh;          /* Full screen height */
  display: flex;
  align-items: center;        /* Vertical center */
  justify-content: center;    /* Horizontal center */
  text-align: center;
  background: black;          /* or your background image */
}

.booking-content h1 {
  font-size: 3rem;
  color: white;
}

.booking-content p {
  color: #ccc;
  margin-top: 10px;
}
.contact-hero {
  min-height: 100vh;          /* Full screen */
  display: flex;
  align-items: center;        /* Vertical center */
  justify-content: center;    /* Horizontal center */
  text-align: center;
  background: black;          /* Match your site theme */
}

.contact-content h1 {
  font-size: 3rem;
  color: white;
}

.contact-content p {
  color: #ccc;
  margin-top: 10px;
}

.contact-info {
  margin-top: 25px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1.1rem;
  color: white;
}
.portfolio-hero {
  min-height: 50vh;          /* Full screen height */
  display: flex;
  align-items: center;        /* Vertical center */
  justify-content: center;    /* Horizontal center */
  text-align: center;
  background: black;          /* Match your theme */
}

.portfolio-content h1 {
  font-size: 3rem;
  color: white;
}

.portfolio-content p {
  margin-top: 12px;
  color: #ccc;
  font-size: 1.1rem;
  max-width: 600px;
}
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: black;
}

.about-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.about-text h1 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}
