:root {
    --bg-color: #0a0a0a;
    --text-color: #f4f4f0;
    --accent-color: #555;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-med: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Cursor */
.cursor {
    width: 160px;
    height: 160px;
    background-image: url('assets/actual_cursor.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    /* Invert colors if the original transparent PNG is black */
    filter: invert(1);
    mix-blend-mode: difference;
    transition: width 0.3s ease, height 0.3s ease;
}

.cursor.hovered {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) rotate(15deg);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin: 0 1.5rem;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: translateX(0);
}

/* Logo Styling */
.logo {
    display: inline-block;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    height: 250%; /* Image has a lot of vertical whitespace, scale it up */
    width: auto;
    object-fit: contain;
    /* Invert the black text on transparent background to white text */
    filter: invert(1); 
    transform: translateY(-5px);
}

.footer-logo {
    height: 280px;
    margin-bottom: 1rem;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.footer-logo:hover {
    opacity: 0.7;
}


/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Changed to 100% to avoid artificial zoom */
    z-index: -1;
    background-color: #fff;
}

.hero-bg img, .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.35; /* Faded per user request */
    transform: translateY(0); /* Handled by JS */
}

.hero-content {
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 6vw;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.soon-text {
    font-family: 'Archetype', 'Archedtype', var(--font-heading);
    font-size: 8vw;
    font-weight: 400;
    letter-spacing: 2vw;
    color: #111;
    margin: 0;
    z-index: 10;
}

.soon-left, .soon-right {
    display: inline-block;
    transition: transform 0.1s ease-out;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.mouse {
    width: 20px;
    height: 30px;
    border: 1px solid var(--text-color);
    border-radius: 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--text-color);
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}


/* Animations */
.reveal-text {
    overflow: hidden;
    display: inline-block;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.reveal-text.active span {
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-med), transform var(--transition-med);
}

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

.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }


/* Collection Section */
.collection {
    padding: 8rem 0;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 5rem;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.product-card {
    position: relative;
}

.product-card.offset {
    margin-top: 8rem;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #111;
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transition: transform 0.1s ease-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-med);
}

.img-wrapper:hover .overlay {
    opacity: 1;
}

.img-wrapper:hover .parallax-img {
    transform: scale(1.05);
    transition: transform var(--transition-slow);
}

.add-to-cart {
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.product-info {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
}

.product-info p {
    font-size: 0.85rem;
    color: #888;
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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



/* Footer */
footer {
    padding: 6rem 4rem 2rem 4rem;
    background-color: transparent;
    position: relative;
    z-index: 50;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.footer-logo {
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.link-group {
    text-align: left;
}

.link-group h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.link-group a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--text-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: #555;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }
    .cursor {
        display: none !important;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .product-card.offset {
        margin-top: 0;
    }
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        background: transparent;
    }
    .logo {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        height: 80px;
        margin-bottom: 0.5rem;
    }
    .nav-links {
        display: flex;
        width: 50%;
    }
    .nav-links.left { justify-content: flex-end; padding-right: 0.5rem; }
    .nav-links.right { justify-content: flex-start; padding-left: 0.5rem; }
    .nav-links a {
        font-size: 0.65rem;
        margin: 0 0.5rem;
        letter-spacing: 1px;
    }
    .hero {
        height: 100svh; /* Better for mobile browsers with URL bars */
    }
    .hero-bg img, .hero-bg video {
        transform: scale(1.5); /* Zoom in to hide black bars baked into the video */
    }
    .hero-content h1 {
        font-size: 12vw;
    }
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }
    .footer-logo {
        height: 80px;
    }
}
