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

:root {
    --cream: #faf7f2;
    --green: #2d5a27;
    --green-light: #3a7532;
    --green-dark: #1e3d1a;
    --gold: #c8a951;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--green-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER & NAV ===== */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: -24px;
}

.logo img {
    height: 300px;
    width: auto;
    margin: -100px 0;
}

nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav a {
    color: var(--text);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.3s, color 0.3s;
}

nav a:hover,
nav a.active {
    background: var(--green);
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--green);
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,90,39,0.75), rgba(30,61,26,0.65));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 24px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    opacity: 0.95;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
}

.btn-primary:hover {
    background: #d4b85e;
    color: var(--green-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--green);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--green-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARD GRID ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.2rem;
    color: var(--green);
    margin-bottom: 8px;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.two-col img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.two-col-text h2 {
    font-size: 1.8rem;
    color: var(--green);
    margin-bottom: 16px;
}

.two-col-text p {
    margin-bottom: 16px;
    color: var(--text-light);
}

/* ===== HIGHLIGHTS BAR ===== */
.highlights {
    background: var(--green);
    color: var(--white);
    padding: 48px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.highlight-item {
    padding: 16px;
}

.highlight-item .icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.highlight-item h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.highlight-item p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ===== CONTACT / FORMS ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-block {
    background: var(--white);
    border-radius: 12px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.contact-info-block h3 {
    color: var(--green);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-item .ci-icon {
    font-size: 1.4rem;
    color: var(--green);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.contact-item p {
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--green);
    font-weight: 600;
}

.opening-hours {
    background: var(--white);
    border-radius: 12px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.opening-hours h3 {
    color: var(--green);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.opening-hours table {
    width: 100%;
    border-collapse: collapse;
}

.opening-hours td {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.opening-hours td:last-child {
    text-align: right;
    color: var(--text-light);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 60px 0 48px;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto;
}

/* ===== GIFT / FEATURE BLOCKS ===== */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 64px 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== IMPRESSUM ===== */
.legal-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h2 {
    color: var(--green);
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 12px;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.8);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    nav.open {
        display: flex;
    }

    .hero {
        height: 400px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
