/* Main Sections */
.section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 100;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #d4af37;
    margin-bottom: 80px;
    font-size: 1.2rem;
    font-weight: 300;
}

.intro-text {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 300;
}

.intro-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}


/* Festival Timeline */

.festivals-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.4);
    margin: 60px 0;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.festivals-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 300;
}

.festivals-showcase p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

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

.festivals-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d4af37;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d4af37;
    font-weight: 400;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #d4af37;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid #000;
    z-index: 10;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/*arts and culture showcase*/

.arts-crafts-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0;
}

.arts-crafts-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 300;
}

.arts-crafts-showcase p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

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

.arts-crafts-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

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

.arts-crafts-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 400;
    margin-top: 20px;
}

.arts-crafts-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
    font-size: 14px;
}

/* Culture Grid */

.dance-music-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0;
}

.dance-music-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 300;
}

.dance-music-showcase p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

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

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

.culture-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

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

.culture-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 400;
    margin-top: 20px;
}

.culture-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
    font-size: 14px;
}

/* Food Showcase - UPDATED */

.food-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.food-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(200deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.food-showcase:hover{
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Updated title color */
.culinary-title {
    color: #d4af37 !important;
}

/* Removed box styling from paragraph */
.intro-text-no-box {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    justify-items: center;
}

/* Mobile responsiveness for food section */
@media (max-width: 768px) {
    .food-showcase {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .food-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .food-item {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }
    
    .culinary-title {
        font-size: 1.8rem;
    }
    
    .intro-text-no-box {
        font-size: 1rem;
        padding: 0 10px;
    }
}

.food-item {
    width: 250px;
    height: 180px;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.food-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.food-item:hover::before {
    opacity: 1;
}

.food-item:hover {
    transform: scale(1.05);
}

.food-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
    transition: transform 0.4s ease;
}

.food-item:hover img {
    transform: scale(1.05);
}

.food-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    text-align: center;
}

.food-title h3 {
    font-size: 1.1rem;
    font-weight: normal;
    color: #fff;
    margin: 0;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    padding: 20px;
    border-radius: 0px;
    text-align: center;
    transition: opacity 0.4s ease;
}

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

.learn-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #b5902e;
}

/* Interactive Map */
.interactive-map {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0;
}

.interactive-map h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 300;
}

.interactive-map p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

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

.map-point {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.map-point:hover {
    transform: translateY(-5px);
}

.map-point-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: left;
}

.map-point-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #d4af37;
}

.map-point-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

/* Etiquette Tips */
.etiquette-tips {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.etiquette-tips:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.etiquette-tips h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: normal;
}

.etiquette-tips > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

.tips-grid {
    display: inline-block;
    margin: 15px;
}

.tip-card {
    width: 250px;
    height: 180px;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.tip-card:hover::before {
    opacity: 1;
}

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

.tip-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
    transition: transform 0.4s ease;
}

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


/* ENHANCED MOBILE RESPONSIVE STYLES */


@media (max-width: 768px) {
   
    .hero {
        height: 80vh; 
        min-height: 500px; 
    }
    
    .hero-bg img {
        object-position: center 30%;
        animation: none; 
    }
    
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.8) 100%
        ); 
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 95%;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        letter-spacing: 1px;
        margin-bottom: 15px;
        line-height: 0px;
    
    .hero-content p {
        font-size: clamp(1rem, 3vw, 1.4rem);
        margin-bottom: 30px;
        line-height: 1.4;
    }

}
    
    /* General Section Adjustments */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }

    /* Timeline Mobile */
    .festivals-showcase {
        padding: 40px 20px;
        margin: 40px 0;
    }
    
    .festivals-showcase p {
        color: rgba(255, 255, 255, 0.8); /* Fix text color */
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 30px;
        margin-right: 0;
        text-align: left;
    }

    .festivals-timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: 15px;
    }

    /* Arts & Crafts Mobile */
    .arts-crafts-showcase {
        padding: 40px 20px;
        margin: 40px 0;
    }
    
    .arts-crafts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Culture Grid Mobile */
    .dance-music-showcase {
        padding: 40px 20px;
        margin: 40px 0;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Map & Tips Mobile */
    .interactive-map,
    .etiquette-tips {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .map-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tips-grid {
        margin: 10px;
    }

    .tip-card {
        width: 100%;
        max-width: 280px;
        height: 160px;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 60px 20px;
        margin-top: 60px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        letter-spacing: 0.5px;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }
    
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Tip Cards */
    .tip-card {
        width: 100%;
        max-width: 250px;
        height: 180px;
    }
    
    /* Timeline adjustments for very small screens */
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 25px;
        margin-right: 0;
        padding: 20px;
    }
    
    .festivals-timeline::before {
        left: 12px;
    }

    .timeline-marker {
        left: 12px;
        width: 16px;
        height: 16px;
    }
}