/* Tree Camp page specific styles */

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

.tree-camp-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;
}

.tree-camp-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;
    background: linear-gradient(rgba(255, 140, 66, 0.4), rgba(26, 26, 26, 0.6)), 
                url('assets-adrenaland/tree_camp/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;
}

/* Tree Camp Content Section */
.tree-camp-content {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 107, 53, 0.2), rgba(26, 26, 26, 0.8)), 
                url('assets-adrenaland/tree_camp/40.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, #32cd32, #228b22);
}

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

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

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

.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: #32cd32;
    font-weight: bold;
}

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

/* Atmosphere Section */
.atmosphere-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 140, 66, 0.3), rgba(42, 42, 42, 0.7)), 
                url('assets-adrenaland/tree_camp/50.jpg') center/cover fixed;
    text-align: center;
}

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

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

/* 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/tree_camp/60.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;
}

/* Add-On Section */
.addon-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 140, 66, 0.4), rgba(26, 26, 26, 0.6)), 
                url('assets-adrenaland/tree_camp/45.jpg') center/cover fixed;
    position: relative;
}

.addon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.addon-content {
    position: relative;
    z-index: 2;
}

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

.addon-text {
    text-align: left;
}

.addon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: white;
}

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

.addon-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ffffff;
}

.addon-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.addon-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.addon-image:hover img {
    transform: scale(1.05);
}

.addon-text .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.addon-text .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

/* 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/tree_camp/55.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, #32cd32, #228b22);
    border-color: #32cd32;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #228b22, #006400);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(50, 205, 50, 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) {
    .tree-camp-hero,
    .intro-section,
    .tree-camp-content,
    .atmosphere-section,
    .gallery-section,
    .addon-section,
    .cta-section {
        background-attachment: scroll;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .addon-text {
        text-align: center;
        order: 2;
    }
    
    .addon-image {
        order: 1;
    }
    
    .addon-image img {
        height: 250px;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        margin: 1rem auto;
        text-align: center;
        max-width: 250px;
    }
}

@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;
    }
}