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

body {
    font-family: 'Helvetica', 'Helvetica Neue', 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;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f0f0f0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

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

p {
    font-size: 1.6rem;
    line-height: 1.5;
}

.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;
}
.address 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) {
    .navbar-container {
        gap: 20px;
        padding: 0 15px;
    }
    
    .nav-link {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .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;
    }
}

