/* --- CSS VARIABLES --- */
:root {
    --primary-green: #525a42; /* Matched to logo background */
    --dark-green: #3a402e;
    --cream: #faf7f2;
    --gold: #c5a880;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: var(--primary-green);
    padding: 20px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: padding 0.3s ease;
}

.logo-container img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(44, 44, 44, 0.4), rgba(44, 44, 44, 0.6)), url('https://images.unsplash.com/photo-1671197346374-9d03a2a33a92?q=80&w=1471&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px; /* Offset for fixed header */
}

.hero-content {
    color: var(--text-light);
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* OPENING BADGE (Placed in Hero or Header context) */
.opening-badge {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    border-radius: 2px;
}

/* --- STORY SECTION --- */
.story-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.story-section h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-style: italic;
}

.story-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.decorative-line {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 40px auto;
}

/* --- OFFERINGS SECTION --- */
.offerings-section {
    padding: 20px 20px 100px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.offerings-section h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offerings-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offerings-list li {
    font-size: 1.2rem;
    color: #555;
    position: relative;
    display: inline-block;
    margin: 0 auto;
    letter-spacing: 1px;
}

.offerings-list li::before {
    content: "•";
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.5rem;
    vertical-align: middle;
}

/* --- IMAGE GRID --- */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5px;
    margin-bottom: -5px;
}

.image-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-address {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-email {
    margin-bottom: 30px;
}

.footer-email a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--cream);
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--text-light);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* --- ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .story-section h2 {
        font-size: 2.2rem;
    }
    .image-grid img {
        height: 250px;
    }
    .hero-logo {
        max-width: 180px;
    }
}
