/* Home Page Specific Styles */
.hero {
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(rgba(22, 36, 26, 0.4), rgba(22, 36, 26, 0.7)), url('spanish-mountains-sunset-cyclist.jpg') center/cover;
    display: flex;
    align-items: center;
    color: var(--c-white);
    margin-top: calc(var(--s-nav-height) * -1); /* Pull up behind transparent nav */
    padding-top: var(--s-nav-height);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    color: var(--c-white);
    margin-bottom: 1.5rem;
    line-height: 0.95;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero h1 span {
    display: block;
    color: var(--c-terracotta);
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Intro Section */
.intro-section {
    padding: 8rem 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.25rem;
    color: var(--c-text-muted);
    font-family: var(--f-serif);
    line-height: 1.8;
}

/* Destinations Grid */
.destinations {
    padding: 0 0 8rem;
}

.dest-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dest-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.dest-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 500px;
    group: relative;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 36, 26, 0.9) 0%, rgba(22, 36, 26, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: var(--c-white);
}

.dest-card h3 {
    color: var(--c-white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.dest-card p {
    font-family: var(--f-serif);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.dest-1 { grid-column: span 8; }
.dest-2 { grid-column: span 4; }
.dest-3 { grid-column: span 4; }
.dest-4 { grid-column: span 8; }

/* Equipment Split */
.equip-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.equip-half {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    overflow: hidden;
}

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

.equip-content {
    position: relative;
    z-index: 3;
    background: rgba(248, 246, 240, 0.95);
    padding: 4rem;
    max-width: 500px;
    text-align: center;
}

.equip-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.equip-content p {
    margin-bottom: 2rem;
    color: var(--c-text-muted);
}

/* Experience Banner */
.experience {
    background: url('pyrenees-mountain-lake-bikes.jpg') center/cover fixed;
    padding: 10rem 0;
    text-align: center;
    color: var(--c-white);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(22, 36, 26, 0.6);
}

.exp-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.exp-quote {
    font-family: var(--f-serif);
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .dest-1, .dest-2, .dest-3, .dest-4 {
        grid-column: span 12;
    }
    .equip-split {
        grid-template-columns: 1fr;
    }
    .equip-content {
        padding: 2.5rem;
    }
}
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding-top: calc(var(--s-nav-height) + 2rem);
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .dest-card {
        height: 400px;
    }
    .dest-overlay {
        padding: 1.5rem;
    }
    .experience {
        background-attachment: scroll;
        padding: 6rem 1rem;
    }
    .exp-quote {
        font-size: 1.5rem;
    }
}