/* ================================
   1. FONT IMPORTS
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =====================================
   2. ROOT VARIABLES
====================================== */
:root {
    --brand-purple: #803089;
    --brand-purple-dull: #7b4d83; /* softer, muted purple */
    --brand-purple-hover: #5f2366;
    --black: #111111;
    --charcoal: #1A1A1A;
    --white: #ffffff;
    --grey: #555555;

    --font-header: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --max-width: 1300px;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 28px;
    --space-lg: 48px;
    --space-xl: 80px;
}

/* =====================================
   3. GLOBAL RESET
====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.65;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =====================================
   HEADER & NAVIGATION
===================================== */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 9999;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.brand img {
    height: 46px;
    width: auto;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.2px;
    position: relative;
    transition: color 0.25s ease;
}

/* Subtle editorial hover */
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand-purple);
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--brand-purple);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Primary CTA */
.nav-cta {
    background: var(--brand-purple);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--brand-purple-hover);
    transform: translateY(-1px);
}

/* =====================================
   MOBILE NAVIGATION
===================================== */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    background: var(--charcoal);
    transition: 0.3s ease;
}

@media (max-width: 980px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 78px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background: var(--white);
        padding: 48px 32px;
        transition: right 0.4s ease;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 1.1rem;
    }
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =====================================
   5. RESPONSIVE MOBILE NAV
====================================== */
@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        padding: 40px;
        transition: 0.4s ease;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        align-items: flex-start;
    }
}

/* =====================================
   6. TYPOGRAPHY
====================================== */
h1, h2, h3, h4 {
    font-family: var(--font-header);
    font-weight: 600;
    color: var(--black);
}

h1 { font-size: 3.2rem; margin-bottom: var(--space-md); }
h2 { font-size: 2.4rem; margin-bottom: var(--space-sm); }
h3 { font-size: 1.8rem; margin-bottom: var(--space-xs); }

p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: var(--space-md);
}







/* ==============================
   CONTACT INTRO (UNDER HERO)
=============================== */
.contact-intro {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}

.contact-intro h1 {
    font-family: var(--font-header);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    color: #111;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--grey);
}

/* CAPTCHA */
.captcha-wrapper {
    margin: 12px 0 6px;
}

/* ==============================
   RESPONSIVE
=============================== */
@media (max-width: 600px) {
    .contact-intro h1 {
        font-size: 2rem;
    }

    .contact-intro p {
        font-size: 1rem;
    }
}



/* ==============================
   CONTACT HERO
=============================== */

.contact-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    background-size: cover;
    background-position: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    color: #ffffff;
}

.contact-hero-content h1 {
    font-family: var(--font-header);
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    margin-bottom: 18px;
    color: var(--brand-purple);
}

.contact-hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}


/* ==============================
   CONTACT CONTENT
=============================== */

.contact-content {
    padding: 100px 24px;
    background: #ffffff;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
}


/* FORM */
.contact-form-wrapper h2 {
    font-family: var(--font-header);
    font-size: 2rem;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.contact-form textarea {
    resize: vertical;
}


/* DETAILS */
.contact-details h2 {
    font-family: var(--font-header);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-details h3 {
    margin-top: 28px;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey);
}

.contact-details a {
    color: var(--brand-purple);
    text-decoration: none;
}

/* Map */
.map-wrapper {
    margin-top: 24px;
}

.map-wrapper iframe {
    width: 100%;
    height: 220px;
    border: none;
    border-radius: 6px;
}

/* Socials */
.contact-socials {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-socials a {
    font-size: 0.9rem;
    color: var(--grey);
    text-decoration: none;
}

.contact-socials a:hover {
    text-decoration: underline;
}


/* ==============================
   FINAL CTA
=============================== */

.contact-final-cta {
    padding: 70px 24px;
    background: var(--brand-purple-dull);
}

.contact-final-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.contact-final-inner h2 {
    font-family: var(--font-header);
    font-size: 2.2rem;
    margin-bottom: 20px;
}


/* ==============================
   RESPONSIVE
=============================== */

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-hero {
        height: 55vh;
    }
}

@media (max-width: 600px) {
    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-final-inner h2 {
        font-size: 1.7rem;
    }
}


/* ==============================
   PRIMARY CTA BUTTON
=============================== */

.primary-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--brand-purple);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

/* Hover */
.primary-cta:hover {
    background-color: var(--brand-purple-hover);
    transform: translateY(-1px);
}

/* Focus (accessibility) */
.primary-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 48, 137, 0.35);
}

/* Disabled state (optional) */
.primary-cta:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}




















/* ==============================
   FOOTER
=============================== */
.site-footer {
    background: #111;
    color: #eee;
    padding: 80px 24px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* ==============================
   QUICK LINKS
=============================== */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 42px;
}

.footer-links a {
    font-size: 0.95rem;
    color: #eee;
    text-decoration: none;
    opacity: 0.8;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.25s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links a:hover::after {
    width: 100%;
}

/* ==============================
   NEWSLETTER / CTA
=============================== */
.footer-newsletter {
    max-width: 560px;
    margin: 0 auto 46px;
}

.footer-newsletter p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.6;
}

/* CTA button */
.footer-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(
        90deg,
        var(--brand-purple),
        var(--brand-purple-dull)
    );
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* ==============================
   SOCIAL ICONS
=============================== */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 36px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
    font-size: 1rem;
    opacity: 0.85;
    transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.footer-social a:hover {
    background: var(--brand-purple);
    opacity: 1;
    transform: translateY(-2px);
}

/* ==============================
   COPYRIGHT
=============================== */
.footer-copy {
    font-size: 0.85rem;
    color: #aaa;
}

/* ==============================
   RESPONSIVE
=============================== */
@media (max-width: 600px) {
    .footer-links {
        gap: 16px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }
}
