@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
    --primary-dark: #0B2B1B;
    --primary-light: #00E559;
    --primary-hover: #00C853;
    --gold: #D4AF37;
    --gold-light: #F0E6D2;
    --beige: #F8F5EE;
    --white: #FFFFFF;
    --text-dark: #0F172A;
    --text-light: rgba(255, 255, 255, 0.8);
    --glass-bg: rgba(11, 43, 27, 0.8);
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Typography Helpers */
.fw-900 { font-weight: 900; }
.fw-800 { font-weight: 800; }
.text-gold { color: var(--gold) !important; }
.text-primary-light { color: var(--primary-light) !important; }

/* Navigation */
.landing-nav {
    position: absolute; /* Match mockup, no fixed glassy unless scrolled? Let's make it static/absolute at top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.landing-nav .nav-link {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.landing-nav .nav-link:hover {
    color: var(--gold);
}

/* Buttons */
.btn-primary-light {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-primary-light:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

/* Sections */
.section-dark {
    background: var(--primary-dark);
    color: var(--white);
    padding: 100px 0;
}

.section-beige {
    background: var(--beige);
    color: var(--text-dark);
    padding: 100px 0;
}

.section-tag-gold {
    text-align: center;
    display: block;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 80px;
    background: url('../images/hero-bg-texture.jpg') center/cover no-repeat; /* Optional texture */
    background-color: var(--primary-dark);
    position: relative;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--gold-light);
    margin-bottom: 24px;
    font-style: italic;
}

.hero-title span {
    color: var(--gold);
    font-style: normal;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin: 0 auto 40px;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

/* Ticker Tape */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--gold);
    padding: 12px 0;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.ticker-move {
    display: inline-block;
    animation: ticker 30s linear infinite;
}
.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Features/Icons */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-dark);
}
.section-beige .icon-circle {
    border-color: var(--primary-dark);
    background: transparent;
}
.section-dark .icon-circle {
    border-color: var(--gold);
    color: var(--gold);
}

/* Images & Cards */
.img-rounded {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.gold-border {
    border: 1px solid var(--gold);
}
.card-beige {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.card-dark {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Checklists */
.checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.checklist i {
    color: var(--primary-light);
    margin-right: 12px;
    font-size: 1.2rem;
}
.checklist-dark i {
    color: var(--gold);
}

/* Map */
.map-container-v2 {
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 2px solid var(--gold);
}
.map-container-v2 iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer-section {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--gold);
}

/* Modal */
.app-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.app-modal.active {
    opacity: 1;
    visibility: visible;
}
.app-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 43, 27, 0.9);
    backdrop-filter: blur(5px);
}
.app-modal-content {
    background: var(--beige);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 2px solid var(--gold);
}
.app-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}
.btn-app {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    margin-bottom: 15px;
    transition: 0.3s;
}
.btn-app:hover {
    background: var(--gold);
    color: var(--primary-dark);
}
.btn-app i {
    font-size: 2rem;
    margin-right: 15px;
}
