﻿@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&display=swap');

.hiking-background {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('/Images/Hiking.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 5%;
}

.hiking-overlay {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hiking-content {
    width: 100%;
    max-width: 900px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

    .hiking-content h1 {
        color: white;
        font-size: 56px;
        font-family: 'Cinzel', serif;
        text-transform: uppercase;
        letter-spacing: 4px;
        text-align: center;
        margin: 0 0 35px 0;
        text-shadow: 0 5px 15px rgba(0,0,0,0.7);
    }

.hiking-info h2 {
    color: #ffd369;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    margin-top: 25px;
    margin-bottom: 10px;
}

.hiking-info p {
    color: #f5f5f5;
    font-size: 18px;
    line-height: 1.8;
    font-family: 'Segoe UI', sans-serif;
}

.book-button {
    margin-top: 40px;
    text-align: center;
}

    .book-button a {
        display: inline-block;
        padding: 15px 35px;
        background: #ff914d;
        color: black;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 12px;
        transition: 0.3s ease;
        font-family: 'Poppins', sans-serif;
        cursor: pointer;
    }

        .book-button a:hover {
            transform: scale(1.05);
            background: white;
        }

@media (max-width: 768px) {

    .hiking-background {
        padding: 40px 5%;
        background-attachment: scroll;
    }

    .hiking-content {
        padding: 35px;
    }

        .hiking-content h1 {
            font-size: 38px;
            letter-spacing: 3px;
            margin-bottom: 25px;
        }

    .hiking-info h2 {
        font-size: 20px;
    }

    .hiking-info p {
        font-size: 16px;
    }

    .book-button a {
        font-size: 16px;
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {

    .hiking-background {
        padding: 30px 4%;
    }

    .hiking-content {
        padding: 25px;
        border-radius: 18px;
    }

        .hiking-content h1 {
            font-size: 28px;
            letter-spacing: 2px;
        }

    .hiking-info h2 {
        font-size: 18px;
    }

    .hiking-info p {
        font-size: 14px;
        line-height: 1.6;
    }

    .book-button a {
        width: 100%;
        display: block;
        text-align: center;
        font-size: 15px;
    }
}
