/* FONT + COLORS */
html {
    scroll-behavior: smooth;
}
:root {
    --primary: rgb(237, 36, 78);
    --text-dark: #1A1A1A;
    --bg-light: #FFFFFF;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Space Grotesk', sans-serif;
}

body {
    margin: 0;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.5;
    background-color: #FFFFFF;
}

/* CONTAINERS */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* NAVBAR */
.site-header {
    background: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 16px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    flex-wrap: wrap;
}

/* LOGO */
.logo img {
    cursor: pointer;
    max-height: 100px;
    width: auto;
    display: block;
    height: auto;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* CTA BUTTON */
.btn-cta {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-cta a {
    text-decoration: none;
    color: #fff;
}

.btn-cta:hover {
    background: #00cc7a;
}

/* ALIGN CTA ON NAV */
.nav-cta {
    margin-left: 20px;
}

/* TEXT EFFECT */
#changing-text {
    transition: opacity 0.5s ease-in-out;
    color: #00cc7a;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
        height: auto;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 16px;
        margin-top: 12px;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
        padding: 14px 0;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 70px;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .btn-cta {
        font-size: 0.9rem;
        padding: 12px 0;
    }
}

/* MODAL */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow);
    position: relative;
}

.modal h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.modal label {
    display: block;
    margin-top: 12px;
    font-weight: 500;
}

.modal input,
.modal textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 4px;
    font-size: 14px;
}

.submit-btn {
    margin-top: 16px;
    width: 100%;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

