:root {
    --color-bg-start: #263c74;
    --color-bg-end: #0f1c3f;
    --color-gold: #d4af37;
    --color-gold-hover: #f9d86e;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.8);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: radial-gradient(circle at center, var(--color-bg-start), var(--color-bg-end));
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Defaults */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
}

.italic-text {
    font-style: italic;
    font-weight: 400;
}

.section-title {
    color: var(--color-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 28, 63, 0.4);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-floating {
    width: 200px;
    height: auto;
    animation: floating 4s ease-in-out infinite;
    /* Basic filter to ensure visibility if logo is dark, though user said transparent */
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3)); 
}

@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 15px); }
    100% { transform: translate(0, 0px); }
}

.hero-slogan {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

/* Scroll Indiactor */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}
.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}
@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Text Sections */
.section-text {
    padding: 6rem 0;
    text-align: center;
}
.section-text p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

/* Showcase / Gallery */
.showcase {
    padding: 4rem 0 6rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.video-card {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    padding-bottom: 177.77%; /* 9:16 Aspect Ratio */
    height: 0;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.video-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section with Glassmorphism */
.contact {
    padding: 4rem 0 8rem;
}

.glass-container {
    background: rgba(255, 255, 255, 0.05); /* Ultra sheer white */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px; /* Slim form */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-navy-dark);
    border: none;
    padding: 15px 30px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: center;
    margin-top: 1rem;
    min-width: 200px;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.social-link {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.social-link a {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link a:hover {
    color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-slogan {
        font-size: 2rem;
    }
    .logo-floating {
        width: 150px;
    }
    .section-title {
        font-size: 2rem;
    }
    .container {
        padding: 0 1.5rem;
    }
}
