/* ===================================
   EXPERIENCES PAGE STYLES
   ================================== */

/* Hero Section - Experiences */
.exp-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    background-image: url('../images/exp-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.exp-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.exp-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.exp-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    font-weight: 300;
}

.exp-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #2c3e50;
    font-weight: 600;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.highlight-icon {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    line-height: 1;
    color: #D2691E;
}

.exp-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* What's Included Section */
.whats-included {
    padding: 100px 0;
    background: #fff;
    scroll-margin-top: 100px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.included-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
    border-color: #D2691E;
}

.card-icon {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 20px;
    display: block;
    color: #D2691E;
    letter-spacing: 3px;
}

.included-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.included-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.included-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.included-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #D2691E;
    font-weight: bold;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
}

.timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #D2691E, #8B4513);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-time {
    background: #D2691E;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 0 40px;
}

.timeline-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Host Section */
.host-section {
    padding: 100px 0;
    background: white;
}

.host-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.host-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.host-image img {
    width: 100%;
    height: auto;
    display: block;
}

.host-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.host-role {
    color: #D2691E;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.host-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.host-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.credential {
    background: #f8f4f0;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
}

.cred-icon {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    color: #D2691E;
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
}

.pricing-section .section-header h2,
.pricing-section .section-header .underline,
.pricing-section .section-header p {
    color: white;
}

.pricing-section .underline {
    background: white;
}

.pricing-card {
    max-width: 800px;
    margin: 60px auto 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing-header {
    background: linear-gradient(135deg, #2c1810 0%, #5d3a1a 100%);
    padding: 40px;
    text-align: center;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: white;
    line-height: 1;
}

.price-per {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-top: 10px;
}

.pricing-details {
    padding: 50px 40px;
}

.pricing-details h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #28a745;
}

.booking-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366 !important;
    border-color: #25D366 !important;
}

.btn-whatsapp:hover {
    background: #1fb854 !important;
    border-color: #1fb854 !important;
}

.booking-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    background: #f8f4f0;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #D2691E;
}

.faq-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Gallery Preview */
.gallery-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.preview-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810 0%, #5d3a1a 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

/* Active Nav Link */
.nav-menu a.active {
    color: #D2691E;
    position: relative;
}

.nav-menu a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #D2691E;
}

/* ===================================
   RESPONSIVE - MOBILE ONLY
   ================================== */

@media (max-width: 768px) {
    /* HERO - Mobile Only */
    .exp-hero {
        padding-top: 180px;
        min-height: 800px;
        padding-bottom: 80px;
    }
    
    .exp-hero-content {
        margin-top: 20px;
    }
    
    .exp-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .exp-highlights {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }
    
    .highlight-item {
        width: 100%;
        padding: 15px 25px;
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
    
    .exp-cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        margin-bottom: 120px;
    }
    
    .btn-large {
        width: 100%;
        padding: 16px 30px;
    }
    
    /* SECTIONS - Mobile Only */
    .whats-included {
        scroll-margin-top: 180px;
        padding-top: 180px;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    /* TIMELINE - Mobile Only */
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-content {
        margin: 20px 0 0 0;
    }
    
    /* HOST - Mobile Only */
    .host-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .host-credentials {
        grid-template-columns: 1fr;
    }
    
    /* PRICING - Mobile Only */
    .pricing-details {
        padding: 30px 20px;
    }
    
    .price-amount {
        font-size: 3.5rem;
    }
    
    /* FAQ - Mobile Only */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* GALLERY - Mobile Only */
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    /* FINAL CTA - Mobile Only */
    .final-cta h2 {
        font-size: 2rem;
    }
}
/* ===================================
   LANGUAGE TOGGLE BUTTON
   Add this CSS to the END of your styles.css file
   ================================== */

.lang-btn {
    background: transparent;
    border: 2px solid #D2691E;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(210, 105, 30, 0.1);
}

.lang-option {
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.lang-option.active {
    color: #D2691E;
}

.lang-divider {
    color: #ccc;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-menu .lang-btn {
        margin-top: 10px;
        justify-content: center;
    }
}