@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;700&display=swap');

:root {
    --bg-color: #030303;
    --text-color: #ffffff;
}

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

@font-face {
    font-family: 'Sofachrome';
    src: url('fonts/sofachrome.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: white;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    height: 100px;
    width: auto;
    filter: invert(1);
    display: block;
}

.status {
    font-weight: 200;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 15vh;
}

.hero-text {
    padding: 0 4rem;
    margin-bottom: 4rem;
}

h1 {
    font-family: 'Sofachrome', sans-serif;
    font-size: 3vw;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: -2px;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transform: translateY(50px);
}

.subtitle {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 200;
    color: rgba(255,255,255,0.7);
    opacity: 0;
}

/* Interactive Accordion Gallery */
.interactive-gallery {
    font-family: 'Sofachrome', sans-serif;
    display: flex;
    width: 100%;
    height: 60vh;
    padding: 0 4rem;
    gap: 1rem;
    opacity: 0;
}

.panel {
    position: relative;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

    .panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.2) grayscale(0.8);
        transition: filter 0.6s ease, transform 0.6s ease;
        transform: scale(1.1);
    }

.panel-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    white-space: nowrap;
}

/* Hover Dynamics */
.panel:hover {
    flex: 4;
}

    .panel:hover img {
        filter: brightness(1) grayscale(0);
        transform: scale(1);
    }

    .panel:hover .panel-text {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

/* CTA Section */
.cta-section {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .cta-section h2 {
        font-family: 'Sofachrome', sans-serif;
        font-size: 3rem;
        font-weight: normal;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-weight: 200;
        color: rgba(255,255,255,0.6);
    }

/* Social Links Styling */
.social-links {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    color: white;
    text-decoration: none;
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: white;
        color: black;
        transform: translateY(-2px);
        border-color: white;
    }

/* =========================================
   Mobile Responsiveness & Scroll Effects
   ========================================= */
@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }

    .cursor-dot, .cursor-outline {
        display: none !important;
    }

    .navbar {
        padding: 1.5rem !important;
        justify-content: center !important;
        transition: opacity 0.3s ease-out;
    }

    .logo {
        height: auto !important;
        max-width: 140px !important;
    }

    .hero {
        padding-top: 130px !important;
        min-height: auto !important;
        height: auto !important;
        display: block !important;
    }

    .hero-text {
        padding: 0 1.5rem !important;
        margin-bottom: 3rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    h1 {
        font-size: 1.2rem !important;
        letter-spacing: 0 !important;
        line-height: 1.5 !important;
        white-space: normal !important;
    }

    .subtitle {
        font-size: 0.95rem !important;
        margin-top: 1rem !important;
    }

    .interactive-gallery {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 1.5rem !important;
        height: auto !important;
        gap: 1.5rem !important;
        margin-bottom: 3rem !important;
    }

    .panel {
        width: 100% !important;
        height: 250px !important;
        flex: none !important;
        border-radius: 8px;
        position: relative;
    }

        .panel img {
            filter: brightness(0.85) grayscale(0) !important;
            transform: scale(1) !important;
        }

    .panel-text {
        opacity: 1 !important;
        bottom: 1.5rem !important;
        left: 1.5rem !important;
        font-size: 1.1rem !important;
        clip-path: inset(0 100% 0 0);
        transform: translateY(0) !important;
        transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
    }

        .panel-text.revealed {
            clip-path: inset(0 0 0 0);
        }

    .cta-section {
        padding: 4rem 1.5rem !important;
        height: auto !important;
        min-height: 40vh !important;
    }

        .cta-section h2 {
            font-size: 1.5rem !important;
        }
}