/* ==========================================
   BEM METHODOLOGY CSS STRUCTURE
   ========================================== */

/* UTM-Helve Font Family */
@font-face {
    font-family: 'UTM-Helve';
    src: url('../fonts/main-font/UTM.html\ Helve.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'UTM-Helve';
    src: url('../fonts/main-font/UTM.html\ HelveBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'UTM-Helve';
    src: url('../fonts/main-font/UTM.html\ Helve_Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'UTM-Helve';
    src: url('../fonts/main-font/UTM.html\ HelveBoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}


/* ==========================================
   BASE STYLES
   ========================================== */

/* The 62.5% Font Size Trick - Makes 1rem = 10px for easier calculations */
:root {
    font-size: 62.5%;
    --map-red-color: #C4031E;
    --map-cyan-color: #76B3E0;
    --map-green-color: #38920E;
    --map-yellow-color: #FFFF00;
    --map-pink-color: #FE80FE;
    --map-orange-color: #FF5500;
    --map-blue-color: #2C3691;
    --map-brown-color: #F0C291;
    --map-white-color: #FFFFFF;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Adjusted for mobile header height */
}

/* ==========================================
   HEADER BLOCK
   ========================================== */
.header {
    background-color: #dcf3ff;
    height: 126px;
    width: 100%;
    box-shadow: 0 10px 2px rgba(255, 255, 255, 0.38);
    position: fixed;
    top: 0;
    z-index: 999;
}

.header__logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
}

.header__logo {
    height: 40px;
}

.header__logo-container-link {
    display: flex;
    align-items: center;
}

.header__logo-cherry-blossom {
    position: absolute;
    top: -10px;
    left: 0;
    height: inherit;
    z-index: -1;
}

.header__nav-bar {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.header__nav-bar a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.header__nav-bar a:hover {
    color: #f78ba3;
    transform: translateY(-2px);
}

.header__nav-bar a.active {
    color: #f78ba3;
}

/* ==========================================
   NAVIGATION BLOCK
   ========================================== */
.nav {
    font-weight: bold;
    color: #2a0e03;
    font-size: 2rem;
    line-height: 5rem;
    white-space: nowrap;
}

.banner__container {
    position: relative;
    height: auto;
    /* height: 100vh; */
    overflow: hidden;
    margin-bottom: 40px;
}

.banner__background {
    width: 100%;
    height: inherit;
    object-fit: cover;
    object-position: bottom;
    margin-top: 126px;
    /* new */
    /* display: block;
    margin-left: auto;
    margin-right: auto; */
}

.banner__layer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 37px;
    justify-content: center;
    align-items: center;
    margin-top: 71px;
}

.banner__layer-logo,
.banner__layer-time {
    width: 30vw;
    object-fit: cover;
}

/* ==========================================
   DECORATIVE ELEMENTS BLOCK
   ========================================== */
.decorative {
    position: absolute;
    object-fit: cover;
    z-index: 1;
}

.decorative__vector--main {
    width: 107px;
    height: 90px;
    top: 456px;
    left: 26%;
}

.decorative__layer--small {
    width: 35px;
    height: 42px;
    top: 78px;
    left: 130px;
}

.decorative__layer--medium {
    width: 83px;
    height: 137px;
    top: 0;
    left: 51px;
}

.decorative__layer--large {
    left: 641px;
}

.decorative__vector--bottom {
    width: 158px;
    height: 58px;
    position: absolute;
    bottom: 0;
    right: 40%;
    z-index: 5;
}

.decorative__vector--top {
    width: 65px;
    height: 62px;
    top: 168px;
    left: 63.44%;
}

/* ==========================================
   ABOUT SECTION BLOCK
   ========================================== */
.about {
    width: 100%;
    justify-content: center;
}

.about__title-container {
    text-align: center;
    margin-top: 70px;
}

.about__gallery-container {
    margin-top: 44px;
    position: relative;
    border: 2px solid #aee3ff;
}

.about__gallery-header {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2a0e03;
    background-color: #c9edff;
}

.about__gallery-header h2 {
    position: relative;
    z-index: 99;
    padding: 0 16px;
    word-break: keep-all;
    text-align: center;
}

.about__gallery-desc {
    text-align: center;
    font-size: 2rem;
    color: #000;
    line-height: 5rem;
    margin-top: 4px;
    font-weight: 500;
}

.about__gallery {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    place-items: center;
    padding: 18px 126px 60px;
    z-index: 2;
}

.about__gallery a img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
}

.about__gallery-flower--top {
    position: absolute;
    top: 0px;
    left: 35px;
}

.about__gallery-flower--bottom {
    position: absolute;
    bottom: 12px;
    right: -50px;
    z-index: 99;
}

.image__pop {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__text {
    font-weight: 500;
    color: #2a0e03;
    letter-spacing: 0;
    line-height: 2.4rem;
    margin-top: 20px;
}

/* ==========================================
   COOPERATION SECTION BLOCK
   ========================================== */
.cooperation {
    display: flex;
    justify-content: space-between;
}

.cooperation__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
}

.cooperation__text-container {
    display: flex;
    flex-direction: column;
    width: 667px;
}

.cooperation__organizations {
    font-weight: 500;
    letter-spacing: 0;
    line-height: 3rem;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    list-style: disc;
    list-style-position: inside;
}

.cooperation__sponsors-title-container {
    display: flex;
    gap: 20px;
}

.cooperation__sponsors-container {
    margin-top: 86px;
    text-align: center;
}

.cooperation__sponsors {
    object-fit: cover;
    margin-top: 56px;
    width: 100%;
}

.cooperation__title {
    font-weight: 700;
    color: #2a0e03;
    font-size: 3.2rem;
    line-height: 5rem;
    white-space: nowrap;
    display: inline;
    background: linear-gradient(45deg, rgb(250 158 195 / 0.55), transparent);
    padding: 0 45px;
}

/* ==========================================
   SOCIAL MEDIA SECTION BLOCK
   ========================================== */
.social {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    gap: 55px;
}

.social__container {
    flex: 1;
}

.social__accent {
    width: 10px;
    top: 1193px;
    left: 126px;
    background-color: #ffbcc2;
}

.social__title {
    font-weight: 700;
    color: #2a0e03;
    font-size: 4rem;
    line-height: 5rem;
}

.social__accent--right {
    position: absolute;
    width: 5px;
    top: 0;
    right: 0;
    bottom: 0;
    margin-left: auto;
    background-color: #ffbcc2;
    margin-right: 2rem;
}

/* ==========================================
   GALLERY BLOCK
   ========================================== */
.gallery {
    width: 540px;
    height: 500px;
    object-fit: cover;
}

.gallery__item--1 {
    top: 1571px;
    left: 126px;
}

.gallery__item--2 {
    top: 2090px;
    left: 126px;
}

.gallery__item--3 {
    top: 2090px;
    left: 685px;
}

.gallery__item--4 {
    top: 2090px;
    left: 1246px;
}

/* ==========================================
   MEDIA CONTENT BLOCK
   ========================================== */
.media {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    height: 300px;
}

.media__facebook-frame,
.media__youtube-frame {
    object-fit: cover;
    flex: 1;
}

.media__facebook-title,
.media__youtube-title {
    font-weight: 700;
    color: #2a0e03;
    font-size: 2.4rem;
    line-height: 5rem;
    white-space: nowrap;
    display: inline;
    background: linear-gradient(45deg, rgb(250 158 195 / 0.55), transparent);
    padding-left: 44px;
}

.media__container {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 11px;
}

/* ==========================================
   FOOTER BLOCK
   ========================================== */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 86px;
}

.footer__organizer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 95px;
}

.footer__organizer-label {
    font-weight: 500;
    color: #000000;
    font-size: 1.6rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.footer__organizer-text {
    font-weight: 500;
    color: #000000;
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.5rem;
    text-align: left;
}

.footer__border {
    height: 8px;
    width: 100%;
    background-color: #000000;
}

/* ==========================================
   SECTION TITLE BLOCK
   ========================================== */
.section-title {
    font-weight: 700;
    color: #2a0e03;
    font-size: 3.2rem;
    line-height: 5rem;
    white-space: nowrap;
    display: inline;
    background: linear-gradient(45deg, rgb(250 158 195 / 0.55), transparent);
    padding: 0 78px;
}

/* ==========================================
   MOBILE MENU & LOADING STYLES
   ========================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    background-color: #f78ba3;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #262b98, #ffbcc2);
    z-index: 1002;
    transition: width 0.3s ease;
}

.page-loading {
    opacity: 0;
}

.page-loaded {
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.cooperation__content {
    margin-top: 86px;
    position: relative;
    flex: 1;
}

/* ==========================================
   MAP PAGE STYLES
   ========================================== */

.map-hero {
    margin-top: 142px;
    text-align: center;
    position: relative;
}

.map-hero__container {
    display: flex;
    justify-content: center;
}

.map-hero__title {
    font-size: 3.2rem;
    color: #2a0e03;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.map-hero__title::after {
    content: '';
    position: absolute;
    width: calc(100% + 100px);
    height: 5px;
    background-color: #ffbcc2;
    bottom: -10px;
    left: -50px;
    z-index: -1;
}

.event-details {
    background: #fff;
}

.event-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    /* 40px */
    margin-top: 86px;
}

.event-info__label {
    font-size: 2.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: disc;
    list-style-position: inside;
}

.event-info__label li::marker {
    color: #ee8da3;
}

.event-info__value {
    font-size: 1.6rem;
    font-weight: 500;
    margin-left: 44px;
}

.venue-gallery {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    margin: 6rem 0 5.5rem 0;
}

.venue-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.1);
    /* 0 4px 15px */
}

.map-section {
    text-align: center;
}

.map-container {
    margin: 0 auto;
    padding: 0 4rem;
    /* 0 40px */
}

.map-embed {
    width: 100%;
    height: 45rem;
    /* 450px */
    border: none;
    border-radius: 1.5rem;
    /* 15px */
    box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.1);
    /* 0 8px 25px */
    margin-top: 3rem;
    /* 30px */
}

.sponsors-section {
    margin-top: 4rem;
    /* 40px */
    text-align: center;
}

.sponsors-title {
    font-size: 2.4rem;
    color: #2a0e03;
    margin-bottom: 3rem;
    text-align: center;
}

/* ==========================================
   SPONSORS SLIDER BLOCK
   ========================================== */

.sponsors-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 4rem;
}

.sponsors-slider__wrapper {
    width: 100%;
    position: relative;
}

.sponsors-slider__container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sponsors-slider__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.sponsors-slider__item {
    flex: 0 0 auto;
    height: 12.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem;
    background-color: #fff;
}

.sponsors-slider__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sponsors-slider__item:hover img {
    transform: scale(1.05);
}

/* ==========================================
   SPONSOR SECTION BLOCK
   ========================================== */

.sponsor__section {
    padding-bottom: 60px;
    width: 100%;
    margin-top: 142px;
    position: relative;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
}

/* Enhanced sponsor title with 3D effect */
.sponsor__title {
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.sponsor__title h2 {
    color: #2a0e03;
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 16px;
    text-shadow: none;
    position: relative;
}

.sponsor__section .sponsor__title:nth-last-child(2) h2 {
    margin-top: 50px;
}

.sponsor__title-underline {
    height: 5px;
    width: 20vw;
    background: #f5bac2;
    margin: 0.5rem auto 2rem;
}

.sponsor__title-underline-two {
    height: 5px;
    width: 18vw;
    background: #f5bac2;
    margin: 0.5rem auto 2rem;
}

.sponsor__row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 30px;
}

.sponsor__row--two-item {
    flex-direction: row;
}

.sponsor__row--half > * {
    flex-direction: row;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.sponsor__row--half-smaller > * {
    width: 25% !important;
}

.sponsor__row span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 74px;
    height: 100%;
    background: linear-gradient(90deg, rgba(250, 158, 195, 0.55) 0%, rgba(255, 255, 255, 0.55) 100%);
    padding: 8px 20px 8px 38px;
}

.sponsor__column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
}

.sponsor__column > * {
    width: 100%;
}
.sponsor__row--three-item {
    flex-direction: row;
}

.sponsor__row--three-item > * {
    flex: 0 0 calc(100% / 3);
}


/* Card effect for sponsor logos */
.sponsor__card {
    background-color: transparent;
    padding: 0;
    transition: all 0.4s ease;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    z-index: 2;
    margin: 0;
}

.sponsor__card-inner {
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    background-color: transparent;
    transition: all 0.4s ease;
    border: none;
    outline: none;
}

/* Different variants with equal vertical positioning */
.sponsor__card--offset-1,
.sponsor__card--offset-2,
.sponsor__card--offset-3 {
    transform: translateY(0);
}

/* Featured cards with special styling */
.sponsor__card--featured {
    transform: translateY(0);
    max-width: 300px;
    margin: 0 auto;
}

/* Loại bỏ hiệu ứng hover */
.sponsor__card:hover .sponsor__card-inner {
    transform: translateY(0);
}

/* Image sizing without transitions */
.sponsor__card img {
    width: 17vw;
    object-fit: contain;
    border: none;
    outline: none;
    transition: none;
    margin: 0;
    padding: 0;
}

.sponsor__row a img,
.sponsor__row img,
.cooperation__sponsors img,
.banner img,
.header img,
.footer img {
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

.sponsor__row a img {
    transition: none;
}

/* Hover effects */
.sponsor__card:hover {
    z-index: 10;
}

.sponsor__card:hover img {
    transform: scale(1);
}

/* Different row styles */
.sponsor__row--mid {
    justify-content: space-around;
}

.sponsor__row--special {
    justify-content: center;
    gap: 0;
}

.sponsor__row--multi {
    flex-wrap: wrap;
    gap: 0;
}

.sponsor__row--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
}

.sponsor__row--alternate .sponsor__card:nth-child(odd) .sponsor__card-inner {
    background-color: #fff;
}

.sponsor__row--alternate .sponsor__card:nth-child(even) .sponsor__card-inner {
    background-color: #fcfcfc;
}

.sponsor__row--single {
    margin: 0 auto;
}

/* Improved divider */
.sponsor__divider {
    height: 5px;
    width: auto;
    max-width: 95.5%;
    min-width: 300px;
    background: #f5bac2;
    margin: 20px auto;
    z-index: 2;
    display: block;
}

/* Banner improvements with 3-part structure */

.banner__left,
.banner__right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 25%;
    z-index: 2;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.banner__left {
    left: 0;
}

.banner__right {
    right: 0;
}

.banner__left img,
.banner__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    margin: 0;
    padding: 0;
}

.banner__center {
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 0;
}

.banner__logo {
    max-width: 70%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
    margin-bottom: 0;
}

.banner__festival-info {
    text-align: center;
    color: #2a0e03;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    font-size: 2.2rem;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: blur(5px);
    border: none;
}

.banner__festival-info h2 {
    font-size: 2.8rem;
    color: #262b98;
    margin-bottom: 0;
}

.banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(220, 243, 255, 0.2), rgba(255, 255, 255, 0));
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

*/ .cooperation__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 50px 5%;
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.9);
}

.cooperation__sponsors {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.about__section {
    padding-top: 142px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about__container {
    display: flex;
    justify-content: center;
}

.about__title {
    font-size: 3.2rem;
    color: #2a0e03;
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.about__title::after {
    content: '';
    position: absolute;
    width: calc(100% + 100px);
    height: 5px;
    background-color: #ffbcc2;
    bottom: -10px;
    left: -50px;
    z-index: -1;
}

/* ==========================================
   EVENT PAGE STYLES
   ========================================== */

.event__section {
    margin-top: 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.event__container {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.event__title {
    font-size: 3.2rem;
    color: #2a0e03;
    margin-bottom: 0.5rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.event__text {
    font-size: 3.2rem;
    color: #2a0e03;
    margin: 0;
}

.event__calendar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 130px 0;
}

.event__calendar img {
    flex: 1;
    width: auto;
}

.event__poster {
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
    object-fit: cover;
}

.event__image--item1 {
    margin-right: 10%;
    margin-top: 22px;
}

.event__image--item2 {
    margin-left: 10%;
    margin-bottom: 5px;
}

.event__body > :not(:nth-last-child(1)) {
    margin-bottom: 160px;
}

.event__body-content {
    margin-bottom: 50px;
}

.event__description {
    font-weight: 500;
}

.content__title {
    font-weight: 700;
    color: #2a0e03;
    font-size: 3.2rem;
    line-height: 5rem;
    white-space: nowrap;
    display: inline;
    background: linear-gradient(45deg, rgb(250 158 195 / 0.55), transparent);
    padding: 0 45px;
}

.content__description {
    margin-top: 20px;
}

.content__body {
    display: flex;
    margin-top: 70px;
}

.content__body img {
    box-shadow: 5px 3px 25px rgba(0, 0, 0, 0.2);
}

.content__body-text {
    margin-top: 50px;
    text-align: left;
}

.content__body-text h3 {
    font-weight: 700;
    color: #2a0e03;
    font-size: 3.2rem;
    line-height: 12rem;
    display: inline-block;
    white-space: nowrap;
    background: linear-gradient(45deg, rgb(250 158 195 / 0.55), transparent);
    padding: 0 225px 0 108px;
}

.content__body-text p {
    font-weight: 500;
    margin: 18px 30px;
}

.content__body-half {
    flex: 1;
}

.content__body-half:nth-child(2) {
    margin-left: 40px;
}

.content__body-half img {
    width: 100%;
    height: auto;
}

.content__body-half .content__body-text h3 {
    display: block;
    line-height: 9.6rem;
}

.content__body-half .content__body-text p {
    margin: 18px 0;
}

.body__image {
    display: flex;
    gap: 28px;
    margin-top: 20px;
}

.body__image-map {
    flex: 8;
}

.body__image-map img {
    height: 100%;
}

.image__desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 24px;
    border: 2px solid #FFBCC2;
    box-shadow: 1px 0 10.3px rgba(0, 0, 0, 0.3);
}

.color__box {
    min-width: 40px;
    min-height: 40px;
    color: #fff;
}

.color__item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.image__desc .color__item:nth-child(1) .color__box {
    background-color: var(--map-red-color);
}

.image__desc .color__item:nth-child(2) .color__box {
    background-color: var(--map-cyan-color);
}

.image__desc .color__item:nth-child(3) .color__box {
    background-color: var(--map-green-color);
}

.image__desc .color__item:nth-child(4) .color__box {
    background-color: var(--map-yellow-color);
}

.image__desc .color__item:nth-child(5) .color__box {
    background-color: var(--map-orange-color);
}

.booth__group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "a b"
        "c b"
        "d e";
    gap: 56px;
    margin-top: 36px;
}

.booth-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booth__title {
    padding-left: 30px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: linear-gradient(45deg, rgb(250 158 195 / 0.55), #fff);
    font-size: 2.4rem;
    font-weight: 600;
}

.booth__item {
    display: flex;
    min-height: 50px;
    gap: 14px;
}

.booth__number {
    min-width: 50px;
    justify-content: center;
}

.booth__desc {
    line-height: 2;
    padding-left: 10px;
    flex: 1;
}

.booth__group .booth-container:nth-child(1) {
    --background-color: var(--map-red-color);
    --text-color: #fff;
    grid-area: a;
}

.booth__group .booth-container:nth-child(2) {
    --background-color: var(--map-green-color);
    --text-color: #fff;
    grid-area: b;
}

.booth__group .booth-container:nth-child(3) {
    --background-color: var(--map-cyan-color);
    --text-color: #000;
    grid-area: c;
}

.booth__group .booth-container:nth-child(4) {
    --background-color: var(--map-yellow-color);
    --text-color: #000;
    grid-area: d;
}

.booth__group .booth-container:nth-child(5) {
    --background-color: var(--map-orange-color);
    --text-color: #fff;
    grid-area: e;
}

.booth__number,
.booth__desc {
    background-color: var(--background-color);
    color: var(--text-color);
    border: 1px solid #000;
    display: flex;
    align-items: center;
}