/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #e5e5e5;
    --bg-color: #121212;
    --surface-color: #C2F85F;
    --text-color: #e5e5e5;
    --text-secondary: #e5e5e5;
    --spacing: 20px;
    --pill-color: #211742;
}


h1, h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: 1.3px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Questrial';
    color: var(--text-color);
    line-height: 1;
    font-weight: 300;
    background: linear-gradient(to bottom, #2d225b, #29305f);
    letter-spacing: 0.05rem;
}
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

/* --- LAYOUT UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing); }
section { padding: 50px 0; }
h2 { font-size: 2.5rem; margin-bottom: 40px; color: var(--primary-color); }

/* --- NAVBAR --- */
header {
    background-color: rgba(45, 34, 91, 0.85);
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    padding: 20px 0;
}
nav { display: flex; justify-content: space-between; align-items: center; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between image and text */
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-color);
}

.logo img {
    height: 40px; /* Adjust size as needed */
    width: auto;
    border-radius: 5px; /* Optional: rounds the corners slightly */
}

.nav-links { display: flex; gap: 30px; }
.nav-links a:hover { color: var(--primary-color); }

/* Hamburger Icon (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
}

/* --- HERO SECTION --- */
.hero-wrapper {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 50vh; padding-top: 100px;
}
.hero-text { flex: 0.9; }
.hero-text h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.1; }
.hero-text p { font-size: 1.0rem; color: var(--text-primary); margin-bottom: 30px; line-height: 1.1}
.store-badges { display: flex; flex-wrap: wrap; gap: 15px; }
.store-badges img { height: 35px; transition: transform 0.2s; }
.store-badges img:hover { transform: scale(1.05); }
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-image img {
    max-width: 100%; height: auto;
}

/* --- SECTIONS --- */

/* --- FEATURES GRID --- */
.features-grid {
    padding-top: 40px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap; /* Allows stacking on small screens */
    justify-content: center;
}

.feature-pill {
    flex: 1;
    min-width: 250px;
    background-color: var(--pill-color);
    padding: 40px 60px;
    border-radius: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem; /* Size of the emoji/icon */
    margin-bottom: 20px;
}

.feature-pill h3 {
    margin-bottom: 15px;
    padding: 10px;
    color: var(--text-color);
    padding-top: 20px;
}

.feature-pill p {
    padding-top: 20px;
    color: var(--text-secondary);
    line-height: 1.1;
    font-size: 1.0rem;
}


.faq-list {
  padding-top: 40px;
}
.faq-item {
    background-color: var(--pill-color); padding: 40px; border-radius: 12px;
}
.faq-item { margin-bottom: 25px; padding: 20px; border-radius: 8px; }
.faq-question { font-size: 1.2rem; color: var(--primary-color); margin-bottom: 10px; font-weight: bold; }
.faq-answer, .policy-text { color: var(--text-secondary); }
.policy-text { max-width: 800px; }

.privacy-list {
    margin-top: 5px;      /* Indents the list slightly */
    margin-left: 20px;     /* Space below the list */
    list-style-type: disc;   /* Standard round bullet */
}

.privacy-wrapper {
    min-height: 50vh; padding-top: 80px;
}

.privacy-wrapper h4 {
  margin-bottom: 6px;
}

.privacy-wrapper p {
  line-height: 1.2;
}

/* The actual bullet dot */
.custom-list li::marker {
    color: var(--primary-color); /* Makes the dot GREEN (#c1fd3a) */
    font-size: 1.2rem;           /* Optional: makes the dot slightly bigger */
}

/* --- FOOTER --- */
footer { padding: 50px 0; background-color: var(--surface-color); margin-top: 40px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.support-email a { color: var(--bg-color); text-decoration: underline; }
.footer-content p { color: var(--bg-color); }

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .hamburger { display: flex; } /* Show hamburger */
    
    .nav-links {
        display: none; /* Hide links by default */
        flex-direction: column;
        position: absolute;
        top: 70px; /* Below header */
        right: 0;
        background-color: #121212;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid #333;
    }

    .nav-links.active {
        display: flex; /* Show links when active class is added */
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-text h1 { font-size: 2.5rem; }
    .store-badges { justify-content: center; }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}
