@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F6F5EF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 6rem;
    background-color: #F6F5EF;
    border-bottom: 1px solid #ddd;
}

.navbar-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    color: inherit;
}

.navbar-toggle svg {
    display: block;
}

.navbar-buttons {
    display: flex;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
}

.button {
    background-color: black;
    color: white;
    border: none;
    padding: 0.7rem 1.25rem;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.button-light {
    background-color: transparent;
    color: black;
    border: none;
    padding: 0.7rem 1.25rem;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.button-light:hover {
    background-color: #e0e0e0;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 6rem;
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.get-started {
    text-align: center;
    padding: 4rem 6rem;
}

.get-started h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.get-started .button {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
}

.how {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 4rem 6rem;
}

.how-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.how-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.how-content {
    flex: 1;
    max-width: 50%;
}

.how-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.how-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #555;
}

.why {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 4rem 6rem;
}

.why-content {
    flex: 1;
    max-width: 50%;
}

.why-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.why-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #555;
}

.why-content strong {
    color: #000;
}

.why-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.why-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

@media (max-width: 1200px) {
    .how-img {
        max-height: 400px;
    }

    .why-img {
        max-height: 400px;
    }
}

@media (max-width: 1000px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
    }

    .navbar-toggle {
        display: inline-flex;
        align-items: center;
    }

    .navbar {
        position: relative;
        padding: 0.8rem 1rem;
    }

    .navbar-buttons {
        display: none;
        position: absolute;
        right: 1rem;
        top: 56px;
        background: #ffffff;
        border-radius: 8px;
        padding: 0.6rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        flex-direction: column;
        gap: 0.5rem;
        z-index: 50;
    }

    .navbar.open .navbar-buttons {
        display: flex;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-buttons .button,
    .hero-buttons .button-light {
        width: auto;
        display: inline-flex;
        align-self: center;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-img {
        max-height: 350px;
    }

    .get-started {
        padding: 4rem 2rem;
    }

    .how {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .how-image {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .how-content {
        max-width: 100%;
    }

    .why {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .why-image {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .why-content {
        max-width: 100%;
    }
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 6rem;
    background-color: #F6F5EF;
    border-top: 1px solid #ddd;
    margin-top: auto;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.built-by {
    color: #888;
    font-size: 0.8rem;
}

.follow-text {
    color: #666;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 0.9rem;
}

.social-link {
    color: #666;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: #333;
}

.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .logo {
        height: 30px;
    }

    .button,
    .button-light {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .navbar-buttons {
        gap: 0.5rem;
    }

    .hero {
        padding: 4rem 2rem;
    }

    .hero-img {
        max-height: 300px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .get-started {
        padding: 4rem 2rem;
    }

    .get-started h2 {
        font-size: 1.5rem;
    }

    .how {
        padding: 4rem 2rem;
    }

    .how-img {
        max-height: 350px;
    }

    .how-content h3 {
        font-size: 1.4rem;
    }

    .how-content p {
        font-size: 0.95rem;
    }

    .why {
        padding: 4rem 2rem;
    }

    .why-img {
        max-height: 350px;
    }

    .why-content h3 {
        font-size: 1.4rem;
    }

    .why-content p {
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 1.5rem;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}
