@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400&family=Montserrat+Alternates:wght@700&family=Montserrat:wght@400;700&display=swap');

:root {
    --primary-color: #e92463;
    --secondary-color: #f39200;
    --text-color: #333;
    --bg-color: #fffaf5;
    --footer-bg: #fdf5eb;
    --nav-height: 60px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Navigation */
header {
    height: var(--nav-height);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    margin: 4px 0;
    transition: 0.3s;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: var(--bg-color);
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    transition: 0.4s ease;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.hero img {
    max-width: 150px;
    height: auto;
    margin-bottom: -10px;
}

.hero h1 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: lowercase;
    color: var(--primary-color);
}

/* Page Content (Privacy/Support) */
.content-section {
    max-width: 800px;
    margin: 100px auto 40px;
    padding: 0 20px;
}

.content-section h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

footer p {
    margin-bottom: 10px;
}

footer .footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 10px;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
}
