* {
    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%;
    z-index: 1;
    pointer-events: none;
}

.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,
.nav-link.active::after {
    width: 100%;
}

.scrollable-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    color: white;
    max-width: 1400px;
    margin: 0 auto;
}

.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;
}

.section-3 {
    justify-content: flex-start;
    align-items: flex-start;
}

.section-3 .text-content {
    text-align: left;
    position: absolute;
    bottom: 40px;
    left: 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; */
}

.contact-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.phone-link,
.whatsapp-link,
.mail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 48px;
    height: 48px;
}

.phone-link:hover,
.whatsapp-link:hover,
.mail-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.phone-icon,
.mail-icon,
.whatsapp-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: block;
    flex-shrink: 0;
    box-sizing: border-box;
}

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

.title img,
img.title {
    margin-left: 5%;
    width: 32%;
    height: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0;
    width: 20%;
    margin-left: 0%;
}

.logo-image {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}

.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;
    }
    
    .logo-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        position: relative;
        padding-left: 5%;
        padding-right: 10%;
    }
    
    .logo-image {
        flex-shrink: 0;
        width: auto;
        max-width: 35%;
    }
    
    .logo-image:first-child {
        margin-right: 15%;
    }
    
    .logo-image:last-child {
        margin-left: 15%;
    }
    
    .section-3 {
        justify-content: center;
        align-items: center;
    }
    
    .section-3 .text-content {
        position: relative;
        bottom: auto;
        left: auto;
        text-align: center;
    }
}

