
:root {
    --primary-red: #E52217;
    --text-dark: #212121;
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
}

@font-face {
    font-family: 'Outfit';
    src: url('/_resources/fonts/outfit-300.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('/_resources/fonts/outfit-800.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Outfit', 
                 -apple-system, 
                 BlinkMacSystemFont, 
                 'Segoe UI', 
                 'Roboto', 
                 'Helvetica Neue', 
                 Arial, 
                 sans-serif;
    font-weight: 300;
    padding-top: 87px; /* Space for fixed menu */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 87px; /* Accounts for fixed menu */
}



/* Menu */
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 7%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 3px solid rgba(0, 0, 0, 0.9);
        z-index: 99;
        transition: all 0.3s ease;
    }

    .menu .logo {
        height: 54px;
        width: auto;
    }

    .menu .nav-links {
        display: flex;
        list-style: none;
        gap: 48px;
        margin-left: auto; /* Push to the right */
        margin-right: 0;
    }

    .menu .nav-links a {
        text-decoration: none;
        color: #222;
        font-weight: 800;
        font-size: 16px;
        position: relative;
        transition: opacity 0.3s ease;
    }

    .menu .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #E52217;
        transition: width 0.3s ease;
    }

    .menu .nav-links a:hover {
        color: #E52217;
    }

    .menu .nav-links a:active {
        color: #E52217;
    }

    .menu .nav-links a:hover::after {
        width: 100%;
    }

    .menu .nav-links .contact-link {
        color: #E52217;
    }

    .menu .nav-links .contact-link:hover {
        color: #222;
    }

    .menu .nav-links .contact-link:active {
        color: #222;
    }

    .menu .nav-links .contact-link::after {
        background-color: #222; 
    }

    .menu .cta-button span {
        display: block;
    }


    /* Mobile Menu */
    .menu .burger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }

    .menu .burger span {
        width: 25px;
        height: 3px;
        background-color: #222;
        margin: 3px 0;
        transition: 0.3s;
        transform: skew(0deg);
    }

    .menu .burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .menu .burger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Mobile styles */

    @media (max-width: 1024px) {
        .menu .nav-links {
            gap: 24px;
        }

        .menu .nav-links a {
            font-size: 16px;
        }

        .menu .logo {
            height: 44px;
            width: auto;
        }
    }

    @media (max-width: 768px) {
        .menu .nav-links {
            position: fixed;
            top: 75px;
            right: -100%;
            width: 80%;
            height: auto;
            background-color: white;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 60px 0;
            gap: 50px;
            box-shadow: -5px 0 10px rgba(0, 0, 0, 0.15);
            transition: right 0.3s ease;
            margin-left: 0; /* Reset desktop right alignment */
            margin-right: 0;
        }

        .menu .nav-links.active {
            right: 0;
        }

        .menu .nav-links a {
            font-size: 24px;
            padding: 8px 0;
            border-bottom: 3px solid #222; /* Dark border for regular links */
            width: 200px;
            text-align: center;
        }

        .menu .nav-links a::after {
            display: none;
        }

        .menu .nav-links .contact-link {
            color: #E52217 !important; /* Red text */
            border-bottom: 3px solid #E52217 !important; /* Red border */
        }
        .menu .nav-links .contact-link:hover {
            color: #222 !important; /* Red text */
            border-bottom: 3px solid #222 !important; /* Red border */
        }
        .menu .nav-links .contact-link:active {
            color: #222 !important; /* Red text */
            border-bottom: 3px solid #222 !important; /* Red border */
        }

        .menu .burger {
            display: flex;
        }
    }


/*Imprint section*/

.imprint-text {
    padding-top: 4em;
    padding-bottom: 4em;
    border-bottom: 2px solid #222;
}

.heavy {
    font-weight: 800;
}




/*Privacy Policy section*/

.long-text {
    max-width: 80ch;
    margin-left: 0;
    padding: 40px 0;
    line-height: 1.6;
    font-size: 16px;
    
}

.long-text h2, .long-text h3 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.long-text p {
    margin-bottom: 1.5em;
}

.long-text ul {
    padding-left: 1.2em;
}





/* Container Component */
    .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 7%;
    width: 100%;
}



/* Footer */
.footer {
    background-color: #080808;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.logo-white {
    width: auto;
    height: 48px;
}

.footer-images {
    display: flex;
    align-items: center;
    gap: 60px;
}

.footer-images a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-images a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-images a:active {
    transform: translateY(-1px);
}

.footer-images a:hover .footer-img {
    filter: brightness(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-img {
    height: auto;
    max-height: 48px; /* Adjust based on your logo height */
    transition: opacity 0.6s ease;
}

.footer-img:hover {
    opacity: 0.5;
}


.footer-line {
    width: 100%;
    height: 1px;
    background-color: #4d4d4d;
    margin-top: 60px;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

    .footer-copyright p {
    color: #9B9B9B;
    font-size: 12px;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 20px 5%;
    }

    .footer-top {
        gap: 20px;
        margin-bottom: 20px;
    }

    .logo-white {
        width: auto;
        height: 40px;
    }

    .footer-images {
        gap: 30px;
    }

    .footer-img {
        max-height: 40px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        align-items: center;
    }

    .logo-white {
        width: auto;
        height: 30px;
    }

    .footer-images {
        gap: 20px;
    }

    .footer-img {
        max-height: 30px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-copyright p {
        font-size: 10px;
    }
}