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

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background-color: #000;
}

.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    background-image: url('assets/background_pour.png');
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.foam-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0.5;
    overflow: hidden;
}

.foam-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: opacity 0.3s ease;
}

.foam-particle.small {
    width: 2px;
    height: 2px;
}

.foam-particle.medium {
    width: 4px;
    height: 4px;
}

.foam-particle.large {
    width: 6px;
    height: 6px;
}

.scrollable-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.text-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.text-content {
    color: white;
    padding: 40px;
}

.top-left {
    position: absolute;
    top: 40px;
    left: 40px;
    text-align: left;
}

.bottom-left {
    position: absolute;
    bottom: 40px;
    left: 40px;
    text-align: left;
}

.bottom-right {
    position: absolute;
    bottom: 40px;
    right: 40px;
    text-align: left;
}
.contact a {
    color: white;
    /* text-decoration: none; */
}

.title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-style: italic;
}

.contact {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .fixed-background {
        background-size: auto 100%;
        background-position: center top;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .contact {
        font-size: 1.2rem;
    }
    
    .top-left,
    .bottom-left,
    .bottom-right {
        padding: 20px;
    }
}

