:root {
    --primary: #8B0000;    /* Deep Cordillera Red */
    --gold: #DAA520;       /* Rich Gold */
    --dark: #1a1a1a;
    --soft-white: #fafafa;
    --text: #333;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f1ea; /* Slightly papery/organic feel */
    color: var(--text);
    line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: 0.3s;
}

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

/* ===== HERO SECTION ===== */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('image/img3.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 10px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 35px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ===== CONTENT SECTIONS ===== */
.content-box {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.accent-bg {
    background: var(--primary);
    color: white;
}

.accent-bg h2 {
    color: var(--gold);
}

.sub-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: bold;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.text-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
}

.accent-bg .text-link {
    color: white;
    border-bottom: 1px solid var(--gold);
}

/* ===== GRID SYSTEM ===== */
.section-title {
    text-align: center;
    margin-top: 80px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 8%;
}

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.4s;
    text-align: center;
    padding-bottom: 25px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.img-container {
    height: 200px;
    overflow: hidden;
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    margin: 20px 0 10px;
    color: var(--primary);
}

.feature-card p {
    padding: 0 20px;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: #999;
    text-align: center;
    padding: 50px 20px;
    margin-top: 80px;
}

footer strong {
    color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Simplified for mobile */
}
