/* --- GLOBAL STYLES & VARIABLES --- */
:root {
    --primary-color: #FFFFFF;
    --background-color: #0A0A0A;
    --secondary-background: #111111;
    --border-color: #222222;
    --accent-color: #AAAAAA;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

h1 { font-size: 4.5rem; margin-bottom: 1rem; }
h2 { font-size: 3rem; margin-bottom: 3rem; text-align: center; position: relative; }
h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

p { margin-bottom: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }
a { color: var(--primary-color); text-decoration: none; }

.section-intro {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-align: left;
    line-height: 1.1;
}
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
}
.logo-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    display: block;
}

.main-nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    align-items: center;
}

.main-nav a {
    padding: 0 1rem;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 1px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
}

.main-nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Nav CTA button */
.main-nav .nav-cta {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 0.5rem;
    border: 1px solid var(--primary-color);
    transition: background-color 0.3s, color 0.3s;
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* --- SECTION STYLING --- */
.section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:last-child {
    border-bottom: none;
}

/* --- HERO SECTION --- */
#home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../images/hero-bg.jpg') no-repeat center center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    max-width: 100%;
}

/* Animated Title */
.animated-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInWord 0.8s forwards;
}
.animated-title span:nth-child(1) { animation-delay: 0.2s; }
.animated-title span:nth-child(2) { animation-delay: 0.4s; }
.animated-title span:nth-child(3) { animation-delay: 0.6s; }
.animated-title span:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInWord {
    to { opacity: 1; transform: translateY(0); }
}

#home .hero-sub {
    font-size: 1.2rem;
    color: var(--accent-color);
    max-width: 650px;
    margin: 0 auto 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    color: var(--accent-color);
    padding: 18px 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    border: 2px solid var(--accent-color);
    transition: border-color 0.3s, color 0.3s;
    background: transparent;
}
.cta-secondary:hover { border-color: var(--primary-color); color: var(--primary-color); }

/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* --- ABOUT SECTION --- */
#about .about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 60px;
}

#about .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.stat-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* --- CLIENTS SECTION --- */
#clients {
    background-color: var(--secondary-background);
}
.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 2rem;
}
.client-logos img {
    height: 60px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease, transform 0.3s ease;
}
.client-logos img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* --- SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.service-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}
.service-card:hover { transform: scale(1.05); }

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    transition: background-color 0.3s ease;
}
.service-card:hover::before { background-color: rgba(0, 0, 0, 0.5); }

.service-content { position: relative; z-index: 2; }
.service-content i { font-size: 3rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.service-content h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.service-content p { font-size: 1rem; color: var(--accent-color); line-height: 1.6; }

.service-card-1 { animation: bg-corporate 21s linear infinite; }
.service-card-2 { animation: bg-private 21s linear infinite; }
.service-card-3 { animation: bg-theatrical 21s linear infinite; }

@keyframes bg-corporate {
    0% { background-image: url('../images/corporate1.jpg'); }
    33% { background-image: url('../images/corporate2.jpg'); }
    66% { background-image: url('../images/corporate3.jpg'); }
    100% { background-image: url('../images/corporate1.jpg'); }
}
@keyframes bg-private {
    0% { background-image: url('../images/private1.jpg'); }
    33% { background-image: url('../images/private2.jpg'); }
    66% { background-image: url('../images/private3.jpg'); }
    100% { background-image: url('../images/private1.jpg'); }
}
@keyframes bg-theatrical {
    0% { background-image: url('../images/stage1.jpg'); }
    33% { background-image: url('../images/stage2.jpg'); }
    66% { background-image: url('../images/stage3.jpg'); }
    100% { background-image: url('../images/stage1.jpg'); }
}

/* --- TESTIMONIALS & VIDEO SECTION --- */
#testimonials { background-color: var(--secondary-background); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.testimonial-card {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-left: 3px solid var(--accent-color);
}
.testimonial-card p { font-style: italic; font-size: 1.1rem; margin-bottom: 1.5rem; }
.testimonial-card .author {
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-align: right;
    color: var(--primary-color);
}

.video-gallery { margin-top: 100px; }
.video-title { margin-bottom: 3rem; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.video-item { position: relative; padding-top: 56.25%; }
.video-item iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 1px solid var(--border-color);
}

/* --- GALLERY SECTION --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; }

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.8s ease-in-out;
    opacity: 1;
}
.gallery-item img:hover { transform: scale(1.05); }

/* --- FAQ SECTION --- */
#faq { background-color: var(--secondary-background); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    padding: 0;
    cursor: pointer;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--accent-color); }

.faq-item summary {
    padding: 1.5rem 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 2rem 1.5rem;
    color: var(--accent-color);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 100%;
    margin: 0;
}
.faq-item p a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* --- CONTACT SECTION --- */
#contact { text-align: center; }
#contact p { margin-bottom: 3rem; }

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.15rem;
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s, background-color 0.3s;
}
.contact-item:hover {
    border-color: var(--primary-color);
    background-color: rgba(255,255,255,0.03);
}
.contact-item i { font-size: 1.2rem; color: var(--accent-color); }

.social-links { margin-top: 2.5rem; }
.social-links a {
    color: var(--accent-color);
    font-size: 2rem;
    margin: 0 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-links a:hover { color: var(--primary-color); transform: scale(1.1); }
.social-links a[aria-label*="YouTube"]:hover { color: #FF0000; }
.social-links a[aria-label*="Instagram"]:hover { color: #E1306C; }
.social-links a[aria-label*="WhatsApp"]:hover { color: #25D366; }

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 18px 40px;
    margin-top: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}
.cta-button:hover { background-color: transparent; color: var(--primary-color); }

/* --- FOOTER --- */
.main-footer {
    padding: 3rem 0 2rem;
    text-align: center;
    color: var(--accent-color);
    border-top: 1px solid var(--border-color);
}
.footer-links { margin-bottom: 0.8rem; }
.footer-links a {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin: 0 0.5rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary-color); }
.footer-cities {
    font-size: 0.78rem;
    color: #555;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    max-width: 100%;
}
.footer-text { font-size: 0.85rem; color: #444; }

/* --- MOBILE MENU --- */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    #about .about-content { grid-template-columns: 1fr; }
    #about .about-image {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    #about .about-image img {
        max-width: 100%;
        max-height: 450px;
        object-fit: cover;
    }
    .testimonial-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .main-header .container { padding-left: 20px; padding-right: 20px; }
    .main-nav {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background-color: var(--background-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }
    .main-nav.active { display: flex; }
    .main-nav ul { flex-direction: column; align-items: center; padding: 1rem 0; }
    .main-nav li { padding: 1.2rem 0; }
    .main-nav a { font-size: 1.4rem; }
    .main-nav .nav-cta { margin-left: 0; margin-top: 1rem; }
    .menu-toggle { display: block; }
    h1 { font-size: 2.8rem; }
    .contact-info { flex-direction: column; gap: 1rem; align-items: center; }
    .logo-main { font-size: 1.5rem; }
    .logo-sub { font-size: 0.6rem; }
    .video-grid { grid-template-columns: 1fr; }
    .client-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .client-logos img { height: auto; width: 100%; }
    
    /* Make gallery items scale proportionally instead of forcing 300px height */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item img {
        height: auto;
        aspect-ratio: 3 / 2;
    }
    
    .hero-ctas { flex-direction: column; align-items: center; }
    .about-stats { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.5rem; line-height: 1.1; }
    h2 { font-size: 2rem; }
    .hero-content { padding: 0 20px; }
    #home .hero-sub { font-size: 1rem; }
    .cta-button { padding: 15px 30px; font-size: 1.1rem; }
    .testimonial-card, .service-card { padding: 2rem; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .client-logos { grid-template-columns: repeat(3, 1fr); }
    .faq-item summary { font-size: 0.95rem; padding: 1.2rem 1.5rem; }
    .faq-item p { padding: 0 1.5rem 1.2rem; }
}