:root {
    /* Color Palette from the image */
    --page-bg: #3a5e8c; /* Muted Purple - SINGLE BODY BACKGROUND */
    --content-bg: #3a5e8c; /* Dark Blue - For cards, headers, footers */
    --text-primary: #f4e1c4; /* Beige */
    --text-secondary: #c5e5f6; /* Light Blue */
    --accent: #61c0b2; /* Teal */

    --border-radius-lg: 1rem; /* 16px */
}

/* ============================================== */
/*                   BASE STYLES                  */
/* ============================================== */

* { box-sizing: border-box; }

body {
    background-color: var(--page-bg);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Global links */
a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--text-secondary); }
.text-secondary { color: var(--text-secondary) !important; }

.rounded-4 { border-radius: var(--border-radius-lg); }

/* Utility: Fluid images everywhere */
img, .img-fluid, .hero-image, .gallery-carousel img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================== */
/*    STYLES FOR RESPONSIVE MAIN NAVIGATION MENU  */
/* ============================================== */

/* Main header bar */
.site-header {
    width: 100%;
    background-color: var(--content-bg);
    padding: 20px;
    position: relative;
    z-index: 1000;
}

/* The navigation container */
.main-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* --- Desktop Links --- */
.nav-links-container {
    display: flex;
    gap: 40px;
}

.nav-links-container a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}
.nav-links-container a:hover { color: var(--accent); }

/* --- Hamburger Button (Hidden on Desktop) --- */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

/* ============================================== */
/*          MOBILE NAV STYLES (HAMBURGER VIEW)    */
/* ============================================== */

@media (max-width: 768px) {
    .main-navigation { justify-content: flex-end; }
    .hamburger-menu { display: block; }

    .nav-links-container {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--content-bg);
        padding: 20px;
        border-top: 1px solid rgba(197, 229, 246, 0.2);
    }
    .nav-links-container.active { display: flex; }

    .nav-links-container a {
        text-align: center;
        padding: 15px 0;
    }

    .hamburger-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
    .hamburger-menu.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============================================== */
/*                  BUTTONS / CTAs                */
/* ============================================== */

.cta-button {
    display: inline-block;
    background: #c86a4f; /* Background from uploaded palette */
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}
.cta-button:hover {
    color: var(--content-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 106, 79, 0.4);
}

/* ============================================== */
/*                HERO BANNER SECTION             */
/* ============================================== */

.hero-banner {
    min-height: 80vh;
    position: relative;
}
.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(58, 94, 140, 0.7); /* Dark blue overlay */
    z-index: 1;
}
.hero-banner .container {
    position: relative;
    z-index: 2;
}

/* Hero image: responsive, nicely cropped */
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 36px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

/* ============================================== */
/*                 SOCIAL ICONS                   */
/* ============================================== */

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--content-bg);
    border-radius: var(--border-radius-lg);
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.social-icon:hover {
    background-color: #5175a8; /* Lighter shade of the dark blue */
    transform: translateY(-3px);
}
.social-icon i { font-size: 1.75rem; }

/* ============================================== */
/*                FEATURES SECTION                */
/* ============================================== */

.feature-card {
    background-color: var(--content-bg);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    height: 100%;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.feature-card h5 {
    font-weight: 600;
    color: var(--text-primary);
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================== */
/*                     FOOTER                     */
/* ============================================== */

footer { background-color: var(--content-bg); }
.email-link {
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}
.email-link:hover { color: var(--accent); }

/* ============================================== */
/*               SLICK CAROUSEL STYLES            */
/* ============================================== */

/* Center-mode look & feel */
.gallery-carousel .slick-slide {
    transition: all 0.3s ease-in-out;
    transform: scale(0.85);
    opacity: 0.6;
}
.gallery-carousel .slick-center {
    transform: scale(1);
    opacity: 1;
}
.gallery-carousel .slick-dots { bottom: -40px; }
.gallery-carousel .slick-dots li button:before {
    font-size: 12px;
    color: var(--text-primary);
    opacity: 0.5;
}
.gallery-carousel .slick-dots li.slick-active button:before {
    color: var(--text-primary);
    opacity: 1;
}

/* Carousel images: remove fixed height, use cover + aspect ratio */
.gallery-carousel img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    object-fit: fill;
    /*aspect-ratio: 16 / 9;*/
}

/* ============================================== */
/*                VIDEO (MASKED)                  */
/* ============================================== */

.video-mask-container {
    position: relative;
    background-color: var(--page-bg); /* Match the body background */
     text-align:center;
    display: flex;
    justify-content: center;
}
.video-mask-container video {
    /*width: 60%;*/
    height: 450px;
    object-fit: fill;
    border-radius:20px;
}

/* ============================================== */
/*            VIDEO TRAILER/PLAYER BLOCK          */
/* ============================================== */

.video-hero-section {
    background-color: var(--content-bg);
    padding: 60px 20px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 30px;
}
.hero-title .highlight { color: var(--accent); }

/* Video player container */
.video-wrapper {
    max-width: 900px;
    margin: 20px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.video-wrapper video {
    width: 100%;
    height: auto;            /* remove fixed 600px */
    display: block;
    aspect-ratio: 16 / 9;    /* keep shape without fixed height */
}

/* ============================================== */
/*               RESPONSIVE TWEAKS               */
/* ============================================== */

@media (max-width: 992px) {
    .gallery-carousel img { aspect-ratio: 4 / 3; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }

    .video-mask-container { height: auto; padding:10px; }
    .video-mask-container video { width: 100%;height:auto; }

    .feature-card { padding: 20px; }
    .gallery-carousel .slick-dots { bottom: -24px; }

    /* Hero image: a bit taller on phones for better presence */
    .hero-image {
        aspect-ratio: 4 / 3;
        border-radius: 24px;
        object-fit:fill;
    }
}

@media (max-width: 576px) {
    .gallery-carousel img { aspect-ratio: 1 / 1; } /* square works great in narrow view */
}

 .studio-logo {
        width: 200px;
        display: block;         /* make it a block element */
        margin: 0 auto 1rem;    /* center it horizontally */
    }
    
/* ---------- Gallery Carousel ---------- */
.carousel-div{
    width:96%;
}
.gallery-carousel {
  margin: 0 auto;
}
.gallery-carousel .slick-slide {
  padding: 0 8px; /* matches your px-2 wrappers */
}
.gallery-carousel .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem; /* keep your rounded-4 feel */
}

/* Dots & arrows */
.gallery-carousel .slick-dots {
  bottom: -28px;
}
.gallery-carousel .slick-dots li button:before {
  font-size: 10px;
  opacity: .35;
}
.gallery-carousel .slick-dots li.slick-active button:before {
  opacity: .9;
}
.gallery-carousel .slick-prev,
.gallery-carousel .slick-next {
  width: 42px;
  height: 42px;
  z-index: 2;
}
.gallery-carousel .slick-prev:before,
.gallery-carousel .slick-next:before {
  font-size: 36px;
  line-height: 1;
  opacity: .8;
}
    
    
