@import url('https://api.fontshare.com/v2/css?f[]=clash-grotesk@200,300,400,500,600,700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Clash Grotesk', sans-serif;
    overflow-x: hidden;
}

.background-container {
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    gap: 15px;
    z-index: 10;
}

.nav-btn img {
    height: 40px;
    /* Adjust based on actual button size preference */
    transition: transform 0.2s ease;
    cursor: pointer;
}

.nav-btn img:hover {
    transform: scale(1.05);
}

/* Main Content Layout */
.content {
    padding-left: 10%;
    /* Place content on the left side */
    padding-top: 5%;
    /* Adjust vertical placement */
    width: 50%;
    /* Limit width so it doesn't overlap the coin on the right (assuming coin is in BG) */
    color: #333;
    /* Dark grey text */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography */
.sub-headline {
    font-size: 2.5rem;
    font-weight: 300;
    /* Light weight */
    line-height: 1.2;
    color: #555;
    margin-bottom: 0px;
}

.headline {
    font-family: 'Clash Grotesk', sans-serif;
    font-size: 8rem;
    /* Big impact */
    font-weight: 600;
    /* SemiBold for headline often looks better, but user asked for Light? They said "police d'ecriture ClashGrotesk en light". I will apply light generally or specific elements. Let's make body light and headers light-ish strictly if requested. */
    color: #222;
    margin-top: -10px;
    margin-bottom: 30px;
    letter-spacing: -2px;
    /* Shimmer Effect */
    background: linear-gradient(to right, #222 20%, #AAA 40%, #FFF 50%, #AAA 60%, #222 80%);
    background-size: 200% auto;
    color: #222;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Intro Overlay */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out;
}

#intro-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* User asked for "ClashGrotesk en light". I will reset the headline to 300 (Light) as well to be safe, or 400. Let's try 300 for everything as base. */

.description p {
    font-weight: 300;
    /* Light */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    max-width: 600px;
}

.description strong {
    font-weight: 500;
    /* Reduced from 700 */
    color: #000;
}

/* Invest Section */
.invest-section {
    margin-top: 10px;
}

.invest-wisely {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
}

.invest-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.invest-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: #222;
}

.invest-text strong {
    font-weight: 500;
}

.copy-ca-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.copy-ca-btn img {
    height: 50px;
    /* Adjust to match visual hierarchy */
}

.copy-ca-btn:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content {
        width: 100%;
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    .headline {
        font-size: 5rem;
    }

    .sub-headline {
        font-size: 1.8rem;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .background-container {
        background-position: left center;
        /* Shift BG if needed on mobile */
    }
}