/* Fonts Link*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Global Style */
* {
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #18181B;
}

img {
    width: 80%;
    display: flex;
    border-radius: 10px;
}

a {
    text-decoration: none;
}

.blur {
    position: absolute; 
    box-shadow: 0 0 1000px 35px #1d4ed8;
    z-index: -100;
}

/* Nav Bar */
nav {
    max-width: 1200px;
    width: 95%;
    margin: auto;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.nav-logo {
    max-width: 100px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-toggle:hover {
    color: #FFBE55;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0 auto;
}

.link a {
    position: relative;
    padding-bottom: 0.75rem;
    color: #fff;
    font-size: 1rem;
}

.link a:hover {
    color: #FFBE55;
    transition: all 0.5s ease;
}

.link a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #FFBE55;
    transition: all 0.5s ease;
}

.link a:hover::after {
    width: 100%;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem; 
    font-weight: bold;
    color: #fff;
    background-color: #323232;
    border-radius: 5px;
    cursor: pointer;
    transition: all 1s ease;
}

.btn:hover {
    color: #18181B;
    background-color: #FFBE55;
}

/* Nav Bar */



/* Footer */
footer {
    max-width: 1200px;
    width: 95%;
    margin: auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background-color: #18181B;
    border: 1px transparent #323232;
    border-radius: 10px;
}

footer .column .logo {
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
}


footer .column h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

footer .column .socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .column .socials a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 1s ease;
}

footer .column .socials a:hover {
    color: #FFBE55;
}

footer .column .last-updates a,
footer .column .navbar-links a {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

footer .column .last-updates a:hover,
footer .column .navbar-links a:hover {
    color: #FFBE55;
}

/* Footer */

/* Copyright */
.copyright {
    max-height: 1200px;
    margin: auto;
    padding: 1rem;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
}
/* Copyright */

/* Media Queries */
@media screen and (max-width: 1024px) {
    nav {
        padding: 1.5rem 0.5rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    footer {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        padding: 1rem 0.5rem;
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .nav-logo {
        flex: 1;
    }
    
    .nav-toggle {
        display: block;
        margin-left: auto;
    }
    
    .btn {
        margin-left: auto;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
        order: 3;
        display: none;
        padding: 1rem 0;
        margin: 0;
    }
    
    .nav-links.active {
        display: flex;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    footer .column .logo {
        margin: 0 auto;
    }
    
    footer .column .socials {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

@media screen and (max-width: 480px) {
    nav {
        padding: 0.8rem 0.5rem;
    }
    
    .nav-logo {
        max-width: 80px;
    }
    
    .nav-links {
        gap: 0.8rem;
        padding: 0.8rem 0;
    }
    
    .link a {
        font-size: 0.85rem;
        padding-bottom: 0.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    footer {
        padding: 1rem;
    }
    
    footer .column h4 {
        font-size: 1rem;
    }
    
    footer .column .socials a,
    footer .column .last-updates a,
    footer .column .navbar-links a {
        font-size: 0.85rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #323232;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    color: #fff;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    color: #fff;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #FFBE55;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-buttons .btn.primary {
    background-color: #FFBE55;
    color: #18181B;
}

.cookie-buttons .btn.secondary {
    background-color: #323232;
    border: 1px solid #FFBE55;
    color: #FFBE55;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        margin: 0.25rem 0;
    }
}