/* --- CSS Reset and Variables --- */
:root {
    --primary-blue: #0A192F; /* Deep, authoritative navy */
    --accent-gold: #C5A880;  /* Muted, elegant gold */
    --bg-light: #F8F9FA;     /* Clean off-white */
    --text-dark: #2D3748;    /* Highly readable dark gray */
    --text-light: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Larger base font size (18px) for 50+ readability */
body {
    font-family: 'Lora', serif;
    font-size: 18px; 
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
.navbar {
    background-color: var(--text-light);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 8rem 0;
    text-align: center;
}

.hero h2 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #B0926A;
}

/* --- Features Grid --- */
.features {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--text-light);
    border-top: 4px solid var(--accent-gold);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h4 {
    font-size: 1.5rem;
}

.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
}

.footer-brand h2 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.footer-social h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
}
/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Handled by JS in a real app */
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero h2 {
        font-size: 2.5rem;
    }
    .hero {
        padding: 5rem 0;
    }
}