@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f4f4f4;
}

nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    background: none;
    color: white;
    padding: 0 20px;
    z-index: 1000;
}

.section1 {
    background-color: #fff;
    color: #121212;
    padding: 20px;
    margin-top: 60px;
}

.content div {
    margin-bottom: 20px 0;
}

.buy-button {
    background-color: #3a2fce;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 150px;
    display: block;
    margin: 20px auto;
    text-align: center;
}

.section2 {
    background-color: #121212;
    padding: 20px;
    color: #cccccc;
}

.sec {
    margin-bottom: 20px;
}

.section3 {
    background-color: #fff;
    padding: 20px;
    color: #121212;
}

nav.active {
    background: #121212;
}

.logo {
    font-size: 1.5rem;
    content: '';
}

.logo a {
    text-decoration: none;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    padding: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 10000;
}

.burger div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transform: scale(1.5);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 10;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0);
}

.mobile-nav.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.5);
}

main.content {
    filter: none;
    transition: filter 0.5s ease;
}

.grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.blur {
    filter: blur(5px) !important;
}

.mobile-nav-links {
    list-style: none;
    /* text-align: center; */
    padding: 0;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    text-decoration: none;
    color: white;
    font-size: 2rem;
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }
}



p {
    margin: 10px 0;
}