@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Lora:wght@400;600&display=swap');

:root {
    --green: #4a5a39;
    --tan: #e9dfca;
    --gold: #b59b72;
    --cream: #f8f5ee;
    --shadow: rgba(0,0,0,0.12);
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    background-color: var(--cream);
    color: #2d2d2d;
    line-height: 1.6;
}

nav {
    background-color: var(--green);
    padding: 14px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-size: 18px;
    font-weight: 600;
}

nav a:hover {
    opacity: 0.7;
}

header {
    text-align: center;
    padding: 20px;
    background-color: var(--tan);
    border-bottom: 3px solid var(--gold);
}

header img {
    max-width: 220px;
}

.btn {
    display: inline-block;
    background-color: var(--green);
    color: white;
    padding: 12px 26px;
    border-radius: 12px;
    font-size: 18px;
    box-shadow: 0 4px 6px var(--shadow);
    text-decoration: none;
    transition: 0.2s ease-in-out;
    margin-top: 20px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px var(--shadow);
}

.main {
    max-width: 1100px;
    margin: auto;
    padding: 30px;
}

h1, h2 {
    font-family: Lora, serif;
    color: var(--green);
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    margin: 30px auto;
    max-width: 1200px;
    box-shadow: 0 4px 14px var(--shadow);
}

.hero-left {
    flex: 1;
    padding: 40px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 3px 10px var(--shadow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 3px 10px var(--shadow);
}

footer {
    background-color: var(--tan);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 3px solid var(--gold);
}
