@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Open+Sans:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B4513;
    --secondary: #CD853F;
    --accent: #D2691E;
    --dark: #3E2723;
    --light: #FFF8DC;
    --cream: #FFFAF0;
    --text: #4A4A4A;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    font-size: 28px;
    color: var(--secondary);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(62, 39, 35, 0.6), rgba(139, 69, 19, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.badge {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

/* Story */
.story {
    padding: 100px 0;
    background: #fff;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value {
    text-align: center;
}

.value i {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.value h4 {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.value p {
    font-size: 14px;
    color: var(--text);
}

/* Offerings */
.offerings {
    padding: 100px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Merriweather', serif;
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.15);
}

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}

.offer-content p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    display: inline-block;
    font-weight: 600;
    color: var(--secondary);
    font-size: 18px;
}

/* Location */
.location {
    padding: 100px 0;
    background: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-details h2 {
    font-family: 'Merriweather', serif;
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.location-intro {
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.detail-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
}

.detail-item i {
    font-size: 24px;
    color: var(--secondary);
    margin-top: 5px;
}

.detail-item h4 {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.detail-item p {
    font-size: 15px;
    line-height: 1.7;
}

.nearby,
.directions {
    margin-bottom: 30px;
}

.nearby h4,
.directions h4 {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nearby h4 i,
.directions h4 i {
    color: var(--secondary);
}

.nearby ul {
    list-style: none;
    padding: 0;
}

.nearby li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.nearby li:last-child {
    border-bottom: none;
}

.directions p {
    font-size: 15px;
    line-height: 1.7;
}

.location-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.location-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: var(--light);
}

.gallery h2 {
    font-family: 'Merriweather', serif;
    font-size: 48px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 50px;
}

.gallery-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-flex img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-flex img:hover {
    transform: scale(1.05);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: #fff;
}

.contact h2 {
    font-family: 'Merriweather', serif;
    font-size: 48px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
}

.contact-desc {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: var(--text);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.contact-form button {
    width: fit-content;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--secondary);
}

.footer-content p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.socials a {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.socials a:hover {
    background: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .story-layout,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .story-values {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .gallery-flex {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}