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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #2c2c2c;
    background-color: #faf9f7;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #fff;
    transition: color 0.4s ease;
}

.navbar.scrolled .nav-logo {
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.4s ease, opacity 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: #2c2c2c;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
    background: #2c2c2c;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 30vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-scroll {
    display: inline-block;
    margin-top: 3rem;
    font-size: 1.5rem;
    color: #fff;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== About ===== */
.about {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.about-image img {
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.about-text p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #555;
}

.about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem !important;
    color: #2c2c2c !important;
    margin-top: 1.5rem !important;
}

/* ===== Gallery ===== */
.gallery {
    padding: 6rem 3rem;
    background: #f0eeeb;
}

.gallery h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

/* ===== Adventures ===== */
.adventures {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.adventures h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.adventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.adventure-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}

.adventure-card img {
    transition: transform 0.6s ease;
}

.adventure-card:hover img {
    transform: scale(1.05);
}

.adventure-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.adventure-card:hover .adventure-info {
    transform: translateY(0);
    opacity: 1;
}

.adventure-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.adventure-info p {
    font-size: 0.8rem;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

/* ===== Adventure Feature (Jakobsweg) ===== */
.adventure-feature {
    display: block;
    margin-top: 2rem;
    padding: 3rem;
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(70,50,35,0.85), rgba(120,90,60,0.7)),
        linear-gradient(to right, #c9b39c 0%, #8a6f57 60%, #5c4732 100%);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.adventure-feature:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(92, 71, 50, 0.3);
}

.adventure-feature-text {
    max-width: 640px;
}

.adventure-feature-kicker {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

.adventure-feature h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 0.8rem;
}

.adventure-feature p {
    font-size: 0.9rem;
    opacity: 0.92;
    margin-bottom: 1.5rem;
}

.adventure-feature-btn {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0.7rem 1.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.adventure-feature:hover .adventure-feature-btn {
    background: #fff;
    color: #5c4732;
}

/* ===== Contact ===== */
.contact {
    padding: 8rem 3rem;
    text-align: center;
    background: #f0eeeb;
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.contact-text {
    font-size: 0.95rem;
    color: #555;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.contact-email {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #2c2c2c;
    border-bottom: 1px solid #2c2c2c;
    padding-bottom: 2px;
    margin-bottom: 2.5rem;
    transition: opacity 0.3s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
}

/* ===== Footer ===== */
.footer {
    padding: 2.5rem 3rem;
    text-align: center;
    border-top: 1px solid #e0ddd9;
}

.footer p {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.3rem;
}

.footer a {
    color: #999;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .adventures-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 1.2rem 1.5rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(250, 249, 247, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: #2c2c2c;
        font-size: 0.9rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .about {
        padding: 5rem 1.5rem;
    }

    .gallery {
        padding: 4rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item--tall {
        grid-row: span 1;
    }

    .adventures {
        padding: 5rem 1.5rem;
    }

    .adventure-feature {
        padding: 2rem 1.5rem;
    }

    .contact {
        padding: 5rem 1.5rem;
    }
}