
html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #fafbfd;
    color: #222;
    display: flex;
    flex-direction: column;
}

/* Sections that should snap toward center (future-friendly) */
.hero,
.feature-section,
.info-section {
    scroll-snap-align: center;
}

/* For potential main wrapper */
.main {
    flex: 1;
}

/* ================================
   HEADER / NAVBAR
=============================== */

header {
    background: #271841;
    border-bottom: 3px solid #67c9d1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo + Brand */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    height: 48px;
}

.brand-name {
    color: #ee2e5d;
    font-size: 1.6rem;
    font-weight: 700;
}

/* Desktop Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ee2e5d;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: 0.2s;
}

.social-icons img:hover {
    opacity: 1;
}

/* Burger Icon */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* ==========================================================
   MOBILE NAV (SIDE DRAWER)
========================================================== */

@media (max-width: 900px) {

    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #271841;
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
        transition: 0.35s ease;
        box-shadow: -3px 0 10px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* PRIVACY POLICY STYLING */
/* CLEAN WHITE PRIVACY POLICY */
.policy-wrapper {
    padding: 60px 20px;
    background: #ffffff; /* pure white */
    color: #222; /* readable dark grey */
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0; /* remove box */
    background: none; /* remove background */
    box-shadow: none; /* remove shadow */
    color: #222;
}

.policy-container h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #271841; /* deep purple brand color */
}

.policy-container .effective-date {
    font-size: 0.95rem;
    margin-bottom: 30px;
    opacity: 0.7;
}

.policy-container h2 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    color: #ff5577; /* your red/pink heading colour */
    font-weight: 600;
}

.policy-container p,
.policy-container li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222;
}

.policy-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-container .ending-note {
    margin-top: 40px;
    font-style: italic;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 600px) {
    .policy-container h1 {
        font-size: 2rem;
    }
    .policy-container h2 {
        font-size: 1.4rem;
    }
}


/* MOBILE */
@media (max-width: 600px) {
    .policy-container {
        padding: 30px 20px;
    }

    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
    }
}


/* ==========================================================
   FOOTER
========================================================== */

footer {
    background: #271841;
    color: #fff;
    border-top: 3px solid #67c9d1;
    padding: 20px 0;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ee2e5d;
}

.icon-credit {
    opacity: 0.6;
    margin-top: 10px;
    font-size: 12px;
}

/* Mobile footer */
@media (max-width: 900px) {
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}