/* Climbing page specific styles */

/* Hero Section */
.climbing-hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 107, 53, 0.3), rgba(42, 42, 42, 0.6)), 
                url('assets-adrenaland/climbing/25.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #ffffff;
}

.climbing-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffffff;
}

.climbing-hero .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    opacity: 0.9;
    color: #ffffff;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(rgba(255, 140, 66, 0.4), rgba(26, 26, 26, 0.6)), 
                url('assets-adrenaland/climbing/30.jpg') center/cover fixed;
    text-align: center;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.intro-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #ffffff;
}

/* Routes Section */
.routes-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 107, 53, 0.3), rgba(26, 26, 26, 0.7)), 
                url('assets-adrenaland/climbing/15.jpg') center/cover fixed;
}

.routes-section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.routes-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.route-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.route-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.route-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ffffff;
}

.route-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff8c42;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Climbing Content Section */
.climbing-content {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 107, 53, 0.2), rgba(26, 26, 26, 0.8)), 
                url('assets-adrenaland/climbing/20.jpg') center/cover fixed;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.info-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
}

.info-icon.duration {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.info-icon.price {
    background: linear-gradient(135deg, #ff8c42, #ffb347);
}

.info-icon.included {
    background: linear-gradient(135deg, #ff6b35, #32cd32);
}

.info-icon.flow {
    background: linear-gradient(135deg, #ff8c42, #1e90ff);
}

.info-icon.who {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.info-list {
    color: #ffffff;
}

.info-list p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.info-list ul {
    list-style: none;
    padding: 0;
}

.info-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #ffffff;
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.price-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff8c42 !important;
    margin-bottom: 1rem !important;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 107, 53, 0.3), rgba(26, 26, 26, 0.7)), 
                url('assets-adrenaland/climbing/10.jpg') center/cover fixed;
    text-align: center;
}

.gallery-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 1;
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(42, 42, 42, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(42, 42, 42, 0.9)), 
                url('assets-adrenaland/climbing/35.jpg') center/cover fixed;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: #ffffff;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8c42, #ffb347);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #333;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .climbing-hero,
    .intro-section,
    .routes-section,
    .climbing-content,
    .gallery-section,
    .cta-section {
        background-attachment: scroll;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        margin: 1rem auto;
        text-align: center;
        max-width: 250px;
    }
    
    .route-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .info-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .routes-section h2 {
        font-size: 2rem;
    }
    
    .route-card {
        padding: 2rem;
    }
}