/* Base Styles & Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0f1014;
    --text-light: #ffffff;
    --text-muted: #a0a0a5;
    --accent: #d4a373;
    --wa-green: #25D366;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

a { text-decoration: none; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(15, 16, 20, 0.5); /* More transparent for glass effect */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-link {
    color: var(--text-light);
}
.phone-link:hover {
    color: var(--accent);
}

.wa-button {
    background-color: var(--wa-green);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
}
.wa-button:hover {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    background-color: #20BA59;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-dark), rgba(15, 16, 20, 0.4));
    z-index: -1;
}

.hero-content {
    animation: fadeIn 2s ease-out forwards;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 2rem);
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Marquee */
.marquee-wrapper {
    background-color: var(--accent);
    color: var(--bg-dark);
    padding: 1rem 0;
    overflow: hidden;
    display: flex;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--accent), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--accent), transparent);
}

.marquee {
    white-space: nowrap;
    animation: marqueeText 15s linear infinite;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marqueeText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Parallax Section */
.parallax-section {
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parallax-header {
    text-align: center;
    margin-bottom: 4rem;
}

.parallax-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.parallax-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.slider-viewport { 
    height: auto; 
    min-height: 80vh;
    padding-bottom: 250px;
    overflow: hidden; 
    display: flex; 
    gap: 2rem; 
    justify-content: center; 
    width: 100%;
    max-width: 1000px;
}

.parallax-col { 
    display: flex; 
    flex-direction: column; 
    gap: 2rem; 
    will-change: transform; 
    transition: transform 0.1s linear; 
    width: 100%;
    max-width: 400px; 
}

.parallax-col img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.parallax-col img:hover {
    filter: grayscale(0%);
}

/* Horizontal Scroll Section */
.horizontal-scroll-section {
    position: relative;
    background-color: #000;
}
.mobile-swipe-indicator {
    display: none;
}

.h-scroll-container {
    display: flex; 
    height: 100vh;
    overflow-x: auto; 
    overflow-y: hidden;
    scrollbar-width: none; /* Hide default scrollbar */
}
.h-scroll-container::-webkit-scrollbar { display: none; }

.panel {
    flex: 0 0 auto; 
    height: 100vh; 
    width: 100vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-content {
    position: relative;
    width: 80%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----------- Fade Up Animation ----------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ----------- Photo Gallery ----------- */
.gallery-section {
    padding: 6rem 5%;
    background-color: var(--bg-dark);
    text-align: center;
}

.gallery-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1; /* Make items square */
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.85) grayscale(10%);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1) grayscale(0%);
}

.panel-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.panel:hover .panel-content img {
    opacity: 0.8;
}

.panel-content h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    pointer-events: none;
    text-transform: uppercase;
}

/* Video Showcase */
.video-showcase {
    padding: 8rem 2rem;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(15, 16, 20, 0.92);
    z-index: 0;
}

.video-showcase .showcase-header,
.video-showcase .video-grid {
    position: relative;
    z-index: 1;
}

.showcase-header {
    text-align: center;
    margin-bottom: 5rem;
}

.showcase-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
}

.showcase-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-category {
    grid-column: 1 / -1;
    margin-top: 5rem;
    margin-bottom: -1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 163, 115, 0.3);
}

.video-category h3 {
    font-size: 2rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    position: relative;
    aspect-ratio: 16/9;
}

.video-wrapper.vertical-video {
    aspect-ratio: 9/16;
}

.video-wrapper:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 163, 115, 0.4);
    border-color: rgba(212, 163, 115, 0.5);
    z-index: 10;
}

/* Premium Blur Overlay */
.video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Play Icon Overlay */
.video-wrapper::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 163, 115, 0.85);
    color: #121212;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px; /* optic center compensation for triangle */
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.2);
}

.video-wrapper:hover::before,
.video-wrapper.is-playing::before,
.video-wrapper.clicked-to-play::before {
    opacity: 0;
}

.video-wrapper:hover::after,
.video-wrapper.is-playing::after,
.video-wrapper.clicked-to-play::after {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #000;
}

/* Floating Badge */
.floating-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    text-decoration: none;
    z-index: 999;
    color: var(--accent);
    transition: transform 0.3s ease, filter 0.3s ease;
    background: rgba(15, 16, 20, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 163, 115, 0.3);
}

.floating-badge:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    background: rgba(212, 163, 115, 0.1);
}

.floating-badge svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate 15s linear infinite;
}

.floating-badge text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-icon {
    font-size: 2rem;
    z-index: 2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* SEO & About Section */
.seo-about-section {
    padding: 6rem 2rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.seo-about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.seo-about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.seo-about-section strong {
    color: var(--accent);
}

/* Footer */
.footer {
    padding: 6rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-dark), #000);
}

.footer-content {
    margin-bottom: 4rem;
}

.footer h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 700;
    transition: color 0.3s ease;
}

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

.footer .wa-button {
    color: white; /* preserve colors on hover */
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .seo-about-section {
        padding: 4rem 1.5rem 1rem;
    }
    
    .seo-about-section h2 {
        font-size: 2rem;
    }

    .navbar {
        padding: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        background: rgba(15, 16, 20, 0.5); /* Glass effect for mobile */
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        gap: 0;
    }

    .nav-title {
        font-size: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 1.2rem;
        font-size: 0.85rem;
        padding-top: 1rem;
        margin-top: 0.8rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .wa-button {
        padding: 0.5rem 1rem;
    }

    .hero-content {
        padding: 0 1rem;
        padding-top: 4rem;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 14vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    }

    .parallax-header h2 {
        font-size: 2.2rem;
    }

    .slider-viewport {
        flex-direction: row;
        height: auto;
        min-height: auto;
        overflow: hidden;
        padding: 0 1rem 4rem 1rem;
        gap: 1rem;
    }

    .parallax-col {
        max-width: 50%;
    }

    .parallax-col img {
        filter: grayscale(0%);
        border-radius: 8px;
    }

    .horizontal-scroll-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .h-scroll-container {
        scroll-snap-type: x mandatory;
        padding: 0 1.5rem;
        scroll-padding: 0 1.5rem;
        gap: 1rem;
    }

    .panel {
        scroll-snap-align: center;
        width: 85vw;
        flex: 0 0 85vw;
        height: 60vh;
    }

    .panel-content {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

    .floating-badge {
        width: 70px;
        height: 70px;
        bottom: 15px;
        right: 15px;
    }

    .floating-badge text {
        font-size: 11px;
    }

    .badge-icon {
        font-size: 1.2rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .video-wrapper {
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .video-wrapper::after {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: var(--primary);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        animation: premiumPulse 2s infinite ease-in-out;
    }

    @keyframes premiumPulse {
        0% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.5), 0 8px 32px rgba(0, 0, 0, 0.3); }
        70% { box-shadow: 0 0 0 20px rgba(212, 163, 115, 0), 0 8px 32px rgba(0, 0, 0, 0.3); }
        100% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0), 0 8px 32px rgba(0, 0, 0, 0.3); }
    }

    .video-wrapper.is-playing::after,
    .video-wrapper.clicked-to-play::after {
        animation: none;
    }

    .footer h2 {
        font-size: 2rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-swipe-indicator {
        display: flex;
        position: absolute;
        top: 50%;
        right: 1.5rem;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        color: var(--text-light);
        padding: 0.8rem 1.2rem;
        border-radius: 30px;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-accent);
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        border: 1px solid rgba(255, 255, 255, 0.15);
        pointer-events: none;
        animation: pulseSwipe 2s infinite ease-in-out;
        transition: opacity 0.5s ease;
    }
    
    .mobile-swipe-indicator.hidden {
        opacity: 0;
    }
    
    @keyframes pulseSwipe {
        0%, 100% { transform: translateY(-50%) translateX(0); }
        50% { transform: translateY(-50%) translateX(-10px); }
    }
}
