/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    background: linear-gradient(to bottom, #6cb1e2, #a1cfff);
    background-attachment: fixed;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #f0f9ff;
    overflow-x: hidden;
    background: transparent;
}



/* Main content sections */
main {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 1;
    background: transparent;
}

.films-section,
.music-section,
.about-section,
.contact-section {
    padding: 2rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: transparent;
    text-align: center;
}



/* Hero section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f0f9ff;
    padding: 0 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content .cta-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 150px;
    margin-top: 0;
}

/* Team member cards - single definition */
.team-member {
    text-align: center;
    padding: 2rem;
    background: #6cb1e2; 
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(144, 205, 244, 0.2);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(144, 205, 244, 0.3);
    background: #004c80 !important;
}

.team-member img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-member:hover img {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.team-member .bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Film and music items */
.film-item,
.music-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    background: transparent;

}

.film-item:hover,
.music-item:hover {
    transform: translateY(-5px);
    background: transparent;
}

/* Footer */
footer {
    position: relative;
    width: 100%;
    padding: 1.5rem 5%;
    text-align: center;
    z-index: 2;
    background: transparent;
    border-top: 1px solid rgba(144, 205, 244, 0.2);
    margin-top: 4rem;
}

/* Page styles */
.home-page,
.films-page,
.music-page,
.about-page,
.contact-page {
    min-height: 100vh;
    padding-top: 80px;
    overflow-y: auto;
}

/* Update footer positioning */
footer {
    background-color: #6cb1e2;
    color: #f0f9ff;
    padding: 1.5rem 5%;
    text-align: center;
    position: relative; /* Changed from fixed */
    width: 100%;
    border-top: 1px solid rgba(144, 205, 244, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 4rem;
}

/* Update body padding for non-homepage */
.films-page,
.music-page,
.about-page,
.contact-page {
    padding-bottom: 0; /* Remove fixed padding */
}

/* Update section styles */
.films-section,
.music-section {
    overflow-y: visible;
}

.about-section {
    padding: 4rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #f0f9ff;
    position: relative;
    padding-bottom: 1rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #004c80;
    border-radius: 2px;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .films-page,
    .music-page,
    .about-page,
    .contact-page {
        padding-top: 70px; /* Slightly reduced for mobile */
    }
}

/* Update font families throughout the site */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
}

.company-name {
    color: #f0f9ff;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.company-name::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #004c80;
    transition: width 0.3s ease;
}

.company-name:hover::after {
    width: 100%;
}

nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
    font-family: 'Poppins', sans-serif;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

nav ul a {
    color: #f0f9ff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

nav ul a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #004c80;
    transition: width 0.3s ease;
}

nav ul a:hover::after {
    width: 100%;
}

nav ul a:hover {
    color: #f0f9ff;
    text-shadow: none;
}

nav ul li {
    position: relative;
    display: inline-block;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: brightness(0.8);
}

.carousel img.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f0f9ff;
    padding: 0 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #6cb1e2;
    color: #f0f9ff;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid rgba(144, 205, 244, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .cta-button:hover {
    background: #004c80;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(144, 205, 244, 0.4);
    color: #f0f9ff;
}

.film-item img,
.music-item img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: transparent;
    padding: 10px;
}

.film-item:hover img,
.music-item:hover img {
    transform: scale(1.05);
}

.film-item:hover ,
.music-item:hover {
    transform: scale(1.05);
}

.film-item h3,
.music-item h3 {
    font-size: 1.8rem;
    padding: 0.5rem;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: center;
    background: #6cb1e2;
    margin: 0;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.team-member .bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.contact-item h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.contact-item a {
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
}

.contact-intro p {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.contact-tagline {
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
}

.contact-cta p {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    font-family: 'Poppins', sans-serif;
}

.location-content p {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
    font-family: 'Poppins', sans-serif;
}

.location-item p {
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }

    nav ul a {
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .film-item h3,
    .music-item h3 {
        font-size: 1.6rem;
        padding: 0.6rem;
    }

    .team-member h3 {
        font-size: 1.4rem;
    }

    .team-member .bio,
    .contact-item a,
    .contact-intro p,
    .contact-tagline,
    .contact-cta p,
    .location-content p,
    .location-item p {
        font-size: 1.1rem;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .hero-content .cta-button {
        top: 66%;
        bottom: unset;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    nav ul a {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .film-item h3,
    .music-item h3 {
        font-size: 1.4rem;
        padding: 0.5rem;
    }

    .team-member h3 {
        font-size: 1.2rem;
    }

    .team-member .bio,
    .contact-item a,
    .contact-intro p,
    .contact-tagline,
    .contact-cta p,
    .location-content p,
    .location-item p {
        font-size: 1rem;
    }

    .company-name {
        font-size: 1.1rem;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #6cb1e2;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(144, 205, 244, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    right: 10px;
    cursor: pointer;
    z-index: 2;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: brightness(0.8);
}

.carousel img.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f0f9ff;
    padding: 0 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Work Sections */
.films-section h2,
.music-section h2,
.about-section h2,
.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    margin: 4rem 0 2rem;
    color: #f0f9ff;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 300;
}

.films-section h2::after,
.music-section h2::after,
.about-section h2::after,
.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #004c80;
    border-radius: 2px;
}

.films-grid,
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.films-grid h3,
.music-grid h3 {
    font-weight: 400;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-item h2 {
    font-family: 'Poppins', sans-serif;
}

.page-title {
    font-size: 4rem;
    text-align: center;
    margin: 6rem 0 2rem;
    font-family: 'Poppins', sans-serif;
    color: #f0f9ff;
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #004c80;
    border-radius: 2px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    color: #f0f9ff;
    position: relative;
    padding-bottom: 1rem;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #004c80;
    border-radius: 2px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2rem 0;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    min-width: 250px;
    text-decoration: none;
    display: block;
    color: #f0f9ff;
    border: 1px solid rgba(144, 205, 244, 0.2);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: #6cb1e2;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(144, 205, 244, 0.3);
    color: #f0f9ff;
    background: #004c80;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.contact-item span {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-wrapper {
    transform: scale(1.1);
}

.contact-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.contact-item h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #f0f9ff;
}

.contact-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.location-content {
    margin-top: 2rem;
}

.location-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #6cb1e2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.location-item:hover {
    background: #90cdf4;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.location-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.location-item p {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 3rem;
    }

    .location-details {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

/* Footer */
footer {
    background-color: #004c80;
    color: #f0f9ff;
    padding: 1.5rem 5%;
    text-align: center;
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(144, 205, 244, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 4rem;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    color: #f0f9ff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-links a:hover {
    background-color: #004c80;
    transform: translateY(-2px);
    color: #f0f9ff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-links img {
    height: 24px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

/* Responsive Design */
@media (max-width: 1200px) {
    nav ul a {
        font-size: 1.1rem;
    }
    .company-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    nav ul a {
        font-size: 1rem;
    }
    .company-name {
        font-size: 1.2rem;
    }
    nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 1260px) {
    .hamburger {
        display: inline-flex;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 2000;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #6cb1e2;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 5rem 0 2rem;
        text-align: center;
        gap: 1.5rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        transform: translateY(-100%);
        transition: none;
        height: auto;
        border-bottom: 1px solid rgba(144, 205, 244, 0.2);
        left: 0;
    }

    nav ul.active {
        transform: translateY(0);
    }

    .logo {
        height: 60px;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .logo-container {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    body {
        background: #6cb1e2 !important;
    }
}

@media (min-width: 1261px) {
    .hamburger {
        display: none !important;
    }
    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 2rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        text-align: left;
        border-bottom: none;
        height: auto;
    }
    .logo-container {
        justify-content: flex-start;
        width: auto;
        text-align: left;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* STYLES */
.nanum-myeongjo-regular {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-style: italic;
}

nav {
    padding: 10px;
    text-align: center;
    letter-spacing: 1ch;
}

nav ul {
    list-style: none;
    padding: 0;
    display:inline; 
}

#nav-button a:hover{
    color: white;
    transform: scale(1.1);
    transition: transform 0.1s ease; 
}



nav li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: normal; 
    display: inline-block; 
}


.intro, .find-out-more, .portfolio-grid, #about, #contact {
    padding: 0px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* PORTFOLIO GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(2fr, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    
}


.portfolio-item p {
    margin-top: 10px;
}

/* ABOUT US */
#about .team {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: white; 
}

#about .team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

#about .team-member img:hover {
    transform: scale(1.1);
}



/* IMAGE CAROUSEL MAIN PAGE */
.carousel {
    display: none; 
    opacity: 0;
    transition: opacity 4s ease; 
    margin: 0; 

}

.carousel-container {
    position: relative; 
    overflow: hidden; 
}

.carousel img {
    width: 100vw;
    object-fit: cover;
    display: none; 
}

.carousel img.active {
    display: block; 
}

/* BSP TEXT MAIN PAGE */
.bsp {
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 10;
    color: #f0f9ff; 
    font-size: 2rem; 
    text-align: center; 
    padding: 10px;
    opacity: 1; 
    transition: opacity 0s; 
    letter-spacing: 0.8ch;
    font-family: 'Poppins', sans-serif;
    background: transparent;
}

.overlay-text{
    position: fixed; 
    top: 65%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 10; 
    color: #f0f9ff; 
    font-size: 2rem; 
    text-align: center; 
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    border: 5px;
    border-style: solid;
    background: transparent;
}

.overlay-text:hover{
    opacity: 100;
    transition: opacity 1s ease;


}

html, body {
    height: 100%; 
    overflow: visible; 
}

@media (max-width: 1200px) {
    nav ul a {
        font-size: 1.1rem;
    }
    .company-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    nav ul a {
        font-size: 0.8rem;
    }
    .company-name {
        font-size: 1.2rem;
    }
    nav ul {
        gap: 1rem;
    }
}

@media (max-width: 1260px) {
    .hamburger {
        display: inline-flex;
        z-index: 2;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #6cb1e2;
        flex-direction: column;
        padding: 5rem 0 2rem;
        text-align: center;
        gap: 1.5rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        transform: translateY(-100%);
        transition: none;
        height: auto;
        border-bottom: 1px solid rgba(144, 205, 244, 0.2);
    }

    nav ul.active {
        transform: translateY(0);
    }

    .logo {
        height: 60px;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .logo-container {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}



/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Page Titles */
.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #004c80;
    border-radius: 2px;
}

/* Update existing section headings */
.films-section h1,
.music-section h1,
.about-section h1,
.contact-section h1 {
    display: none;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .page-title,
    .films-section h2,
    .music-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 3rem;
        margin: 4rem 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title,
    .films-section h2,
    .music-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 2.5rem;
        margin: 3rem 0 1rem;
    }
}

/* About Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member:hover {
    background: #004c80 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(144, 205, 244, 0.3);
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 5% 2rem;
    }

    .about-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .team-member img {
        width: 150px;
        height: 150px;
    }
}

/* Remove the button container and button styles */
.film-item .button-container,
.music-item .button-container,
.see-more-button {
    display: none;
}


.film-detail-section {
    padding: 8rem 5% 3rem;
    max-width: 1400px;
    margin: 0 auto;
    color: #f0f9ff;
    position: relative;
    background: transparent;
}

.film-header {
    text-align: center;
    margin-bottom: 2rem;
}

.film-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 500;
}

.film-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #004c80;
    border-radius: 2px;
}

.film-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.film-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.film-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gallery-grid img:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.film-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.film-info h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: white;
}

.film-info p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}

.film-info ul {
    list-style: none;
    padding: 0;
}

.film-info li {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .film-detail-section {
        padding: 5rem 5% 2rem;
    }
    
    .film-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .film-header h1 {
        font-size: 2.2rem;
    }

    .film-meta {
        flex-direction: column;
        gap: 0.3rem;
    }

    .main-image {
        height: 250px;
    }

    .gallery-grid img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .film-detail-section {
        padding: 4rem 5% 1.5rem;
    }

    .film-header h1 {
        font-size: 1.8rem;
    }

    .film-info h2 {
        font-size: 1.4rem;
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    margin-bottom: 2rem;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.laurel-icon {
    width: 60px;
    height: auto;
    vertical-align: middle;
    margin-left: 8px;
    margin-bottom: 2px;
}

/* Replace any remaining instances */
.highlight {
    color: #f0f9ff;
}

.accent-text {
    color: #f0f9ff;
}

.feature-highlight {
    color: #f0f9ff;
}

/* Navigation and interactive elements */
nav ul a:hover,
.company-name:hover,
.logo-container:hover .company-name,
.nav-link:hover,
.social-link:hover,
.contact-link:hover {
    color: #f0f9ff;
}

/* Button and card interactions */
.button:hover,
.card:hover .highlight,
.interactive-element:hover {
    color: #f0f9ff;
}

/* Accent colors and highlights */
.accent-color,
.highlight-text,
.special-text {
    color: #f0f9ff;
}

/* Background accents */
.bg-accent,
.highlight-bg {
    background-color: #f0f9ff;
}

.coming-soon-banner {
    position: absolute;
    top: 30px;
    right: -35px;
    background: #004c80;
    color: #f0f9ff;
    padding: 10px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.awards {
    margin-top: 2rem;
}

.awards h2 {
    margin-bottom: 1.5rem;
}

.awards ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.awards li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.awards li:hover {
    transform: translateY(-5px);
    background: rgba(37, 99, 235, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.awards li img {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.awards li:not(:has(img)) {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Hero video background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background: #6cb1e2;
}

/* Remove carousel from hero */
.hero .carousel {
    display: none !important;
}

.portrait-video {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain !important;
    background: #6cb1e2;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-video-container {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #6cb1e2;
    z-index: 0;
    overflow: hidden;
  }
  .portrait-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain !important;
    background: #6cb1e2;
    display: block;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .film-header,
  .music-header {
    margin-top: 6rem;
  }
}

@media (max-width: 768px) {
  html {
    background: #6cb1e2 !important;
  }
}


