/* === Color Palette (pastel, from logo) === */
:root {
    --orange: #D4722A;
    --orange-dark: #B85E1E;
    --orange-bg: #E8842F;
    --orange-bg-deep: #C96A22;
    --blue: #8ECAE6;
    --blue-light: #B8DFF0;
    --teal: #2D5E4A;
    --navy: #1A1A2E;
    --cream: #FFF8F0;
    --white: #FFFFFF;
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--cream);
}

/* === Coming Soon Page === */
.coming-soon-page {
    background: linear-gradient(160deg, var(--orange-bg) 0%, var(--orange-bg-deep) 100%);
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.logo {
    width: 280px;
    max-width: 80vw;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.25rem;
    color: var(--cream);
    max-width: 500px;
    line-height: 1.6;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin: 2rem 0;
}

.notify-text {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.8;
}

/* === Footer === */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--white);
}

.copyright {
    font-size: 0.8rem;
    color: var(--cream);
    opacity: 0.5;
}

/* === Privacy Policy Page === */
.privacy-page {
    background: linear-gradient(160deg, var(--orange-bg) 0%, var(--orange-bg-deep) 100%);
}

.privacy-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-small {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.2s;
}

.logo-small:hover {
    transform: scale(1.05);
}

.back-link {
    text-decoration: none;
}

.privacy-content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.privacy-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--cream);
    opacity: 0.7;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
}

.privacy-content section {
    margin-bottom: 2rem;
}

.privacy-content h2 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-content h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 1rem 0 0.5rem;
}

.privacy-content p {
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.privacy-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content ul li {
    position: relative;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: 0.3rem;
}

.privacy-content ul li::before {
    content: '';
    position: absolute;
    left: -1.2rem;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

.privacy-content a {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    transition: text-decoration-color 0.2s;
}

.privacy-content a:hover {
    text-decoration-color: var(--white);
}

.contact-email {
    font-size: 1.1rem;
    color: var(--white) !important;
    font-weight: 600;
}

/* === Responsive === */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }

    .tagline {
        font-size: 1rem;
    }

    .logo {
        width: 200px;
    }

    .privacy-content h1 {
        font-size: 1.8rem;
    }

    footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}
