/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-color: #556B2F; /* Olive Green */
    --secondary-color: #D4AF37; /* Gold */
    --bg-color: #FDFBF7; /* Cream */
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --black: #1A1A1A;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Landing Page */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.logo-text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.status-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid var(--secondary-color);
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
    margin-bottom: 2rem;
}

/* Privacy Page */
.privacy-page {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 4rem;
    margin-bottom: 4rem;
    border-top: 5px solid var(--primary-color);
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.privacy-content h2 {
    margin-top: 2.5rem;
    font-size: 1.8rem;
    border-left: 3px solid var(--secondary-color);
    padding-left: 1rem;
}

.privacy-content h3 {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.privacy-content th, .privacy-content td {
    padding: 1rem;
    border: 1px solid #eee;
    text-align: left;
}

.privacy-content th {
    background-color: #f9f9f9;
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
}

/* Footer */
footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    z-index: 3;
    font-size: 0.9rem;
}

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

footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

.static-footer {
    position: relative;
    bottom: 0;
    margin-top: 4rem;
    padding: 2rem 0;
    background-color: var(--black);
    color: var(--white);
    width: 100%;
}
.static-footer p {
    color: #888;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2rem;
    }
    .tagline {
        font-size: 1.1rem;
    }
    .privacy-page {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
}
