/* =========================
   GLOBAL RESET
========================= */
body {
    font-family: 'Arial', sans-serif;
    color: #02331d;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* =========================
   ABOUT BHUTAN SECTION
========================= */
.about-bhutan-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.image-column,
.text-column {
    flex: 1 1 45%;
}

.bhutan-map {
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
}

/* Paragraphs */
.first-paragraph-text,
.second-paragraph-text,
.third-paragraph-text,
.festival-description {
    margin-top: 20px;
    font-size: 1em;
    color: #02331d;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-align: justify;
}

/* =========================
   FESTIVAL + CONTENT SECTIONS
========================= */
.festival-section,
.culture-section {
    background-color: #fafafa;
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.festival-heading,
.culture-heading {
    font-size: 2em;
    color: #073144;
    text-align: left;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

/* =========================
   TWO COLUMN LAYOUT
========================= */
.festival-content,
.culture-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.festival-text,
.culture-text {
    flex: 1;
    font-size: 1em;
    line-height: 1.8;
    color: #02331d;
    font-family: "Montserrat", sans-serif;
    text-align: justify;
}

/* =========================
   IMAGE WRAPPERS
========================= */
.festival-image-wrapper,
.culture-image-wrapper {
    flex: 1;
    position: relative;
}

/* Main Images */
.festival-image,
.culture-image {
    max-width: 60%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,1,0.5);
    border: 4px solid #fff;
    transition: 0.3s ease;
}

.festival-image:hover,
.culture-image:hover {
    transform: scale(1.05);
}

/* =========================
   SMALL OVERLAPPING IMAGES
========================= */
.small-festival-image {
    position: absolute;
    top: 10%;
    left: 55%;
    max-width: 30%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    border: 5px solid #fff;
    animation: waveAnimation 3s infinite ease-in-out;
}

.small-culture-image {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 25%;
    height: 70%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    border: 5px solid #fff;
    animation: waveAnimation 3s infinite ease-in-out;
}

/* =========================
   BUTTON
========================= */
.find-a-trip-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-find-a-trip {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: #02331d;
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #02331d;
    border-radius: 5px;
    transition: 0.3s ease;
}

.btn-find-a-trip:hover {
    background-color: #02331d;
    color: #fff;
}

/* Language Section - Centered */
.language {
    background-color: #ffffff;
    padding: 40px 20px;
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: "Montserrat", sans-serif;

    /* CENTERING */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Heading */
.language h2 {
    font-size: 2em;
    color: #073144;
    margin-bottom: 15px;
}

/* Paragraph */
.language p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #02331d;
    max-width: 800px;
}

/* List */
.language ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 600px;
}

/* List Items */
.language ul li {
    background: #f4f4f4;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-left: 4px solid #02331d;
    border-radius: 5px;
    transition: 0.3s ease;
    text-align: left; /* keeps readability */
}

/* Hover */
.language ul li:hover {
    background: #02331d;
    color: #fff;
    transform: translateX(5px);
}
/* =========================
   ANIMATION
========================= */
@keyframes waveAnimation {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(10px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {

    .about-bhutan-section .container {
        flex-direction: column;
    }

    .festival-content,
    .culture-content {
        flex-direction: column;
        text-align: center;
    }

    .festival-image,
    .culture-image {
        max-width: 100%;
    }

    .small-festival-image {
        left: 50%;
        transform: translateX(-50%);
        max-width: 50%;
    }

    .small-culture-image {
        left: 0;
        top: -20px;
        width: 40%;
    }
}