:root {
    --bg-color: #050505;
    --bg-darker: #000000;
    --text-color: #f0f0f0;
    --accent-gold: #FFD700;
    --accent-silver: #C0C0C0;
    --accent-neon: #00ffff;
    --font-main: 'Montserrat', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.pt-5 { padding-top: 4rem; }
.pb-5 { padding-bottom: 4rem; }
.w-100 { width: 100%; }

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--accent-gold), #b89b00);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s ease-out; /* Changed for magnetic effect */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.cta-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--accent-silver);
    color: var(--accent-silver);
    box-shadow: none;
}

.cta-btn.secondary:hover {
    background: rgba(192, 192, 192, 0.1);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.logo img {
    height: 40px;
    transition: var(--transition-smooth);
    border-radius: 4px; /* Some logos look better rounded if they are jpgs */
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(5,5,5,1) 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.glitch-text {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(180deg, #D7E2EA 0%, #646973 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--accent-silver);
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.dark-bg {
    background-color: var(--bg-darker);
}

/* MARQUEE SECTION */
.marquee-section {
    overflow: hidden;
    position: relative;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee-row {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-content {
    display: flex;
    gap: 20px;
}

.marquee-content img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    filter: brightness(0.7) contrast(1.1);
    transition: var(--transition-smooth);
}

.marquee-content img:hover {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.02);
}

/* Grid Layouts */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

/* Cards */
.card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,215,0,0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card:hover img {
    transform: scale(1.05);
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.link-btn {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.link-btn:hover {
    color: var(--accent-neon);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 15px;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item:nth-child(3), .gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover::after {
    opacity: 1;
}

.center-btn {
    text-align: center;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 15px 15px 0 rgba(255, 215, 0, 0.2);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.contact-info {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border-top: 3px solid var(--accent-gold);
}

.contact-info h3 {
    margin-bottom: 15px;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 10px 15px;
    background: var(--accent-silver);
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 0 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    border-radius: 4px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-social {
    color: #555;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* --- MOTIONS & ANIMATIONS --- */

/* Scroll Reveal (Vertical) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Fade Ups */
.motion-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

/* Scroll Reveal Text by Character (Fallback basic animation via JS classes) */
.scroll-reveal-text span {
    opacity: 0.2;
    transition: opacity 0.3s ease;
}
.scroll-reveal-text span.revealed {
    opacity: 1;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(123deg, #25D366 10%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

.floating-whatsapp:hover {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(3), .gallery-item:nth-child(6) {
        grid-column: span 1;
    }
    
    .glitch-text {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
    }

    .nav-links.nav-active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .menu-toggle.toggle span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}
