﻿/* Hero Section */
.music-service-hero {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    padding: 20px 88px 0;
}

.hero-content-wrapper {
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding: 0 0 0 5%;
}

.hero-left-content {
    flex: 0 0 auto;
    max-width: 527px;
}

.breadcrumb-container {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb {
    font-family: 'AttenNew', 'Atten New', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 1px;
    color: #9EA3A6;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-arrow {
    width: 24px;
    height: 24px;
}

.music-service-title {
    font-family: 'AttenNew', 'Atten New', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 83%;
    color: #000000;
    margin: 0 0 20px 0;
    max-width: 460px;
}

.music-service-description {
    font-family: 'AttenNew', 'Atten New', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #333333;
    margin: 0;
    max-width: 527px;
}

.hero-right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 845px;
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.japan-tag {
    position: absolute;
    width: 120px;
    height: 73px;
    right: 60px;
    bottom: 40px;
    z-index: 10;
}

.japan-tag-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FFE600;
    border-radius: 3.27px;
    box-shadow: 
    0px 100px 80px rgba(56, 56, 56, 0.1),
    0px 64.8148px 46.8519px rgba(56, 56, 56, 0.076),
    0px 38.5185px 25.4815px rgba(56, 56, 56, 0.061),
    0px 20px 13px rgba(56, 56, 56, 0.05),
    0px 8.14815px 6.51852px rgba(56, 56, 56, 0.039),
    0px 1.85185px 3.14815px rgba(56, 56, 56, 0.024);
}

.japan-tag-arrow {
    position: absolute;
    width: 18.74px;
    height: 11.23px;
    left: 95.31px;
    bottom: -6px;
    background: #FAFAFA;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.japan-tag-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'AttenNew', 'Atten New', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #313131;
    padding: 0 10px;
}

.map-point {
    position: absolute;
    width: 10px;
    height: 8px;
    background: #FFE600;
    cursor: pointer;
    z-index: 5;

    transform: translate(-50%, -50%);

    /* hexagon */
    clip-path: polygon(
        25% 0%,
        75% 0%,
        100% 50%,
        75% 100%,
        25% 100%,
        0% 50%
    );
}


.showbiz-event-section {
    position: relative;
}

.inter-section-title {
    display: inline-block;   /* สำคัญ */
    background: #FFE600;
    color: #333;
    font-weight: 600;
    font-size: 24px;

    padding: 8px 40px;
    border-radius: 8px;

    min-width: 200px;
    text-align: center;

    margin-bottom: 20px;     /* เว้นจาก content ด้านล่าง */
    margin-left: 5%;
}

.inter-sub-title {
    color: #333;

    font-weight: 800;
    font-size: 32px;

    padding: 8px 40px;
    border-radius: 8px;

    margin-left: 3%;
    margin-top: 1%;
}

.country-section {
    margin: 0 18% 64px 20%;
}

.country-title {
    font-size: 32px;
    font-weight: 700;
}

/* item layout */
.content-item {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
}

.item-image {
    flex: 0 0 180px;
}

.item-image img {
    width: 100%;
    border-radius: 12px;
}

.item-text {
    flex: 1;
    font-weight: 600;
    font-size: 24px;
}

/* content ลำดับคู่ → สลับฝั่ง */
.country-list .content-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

/* scope เฉพาะ music-section เท่านั้น */
.music-section {
    margin-bottom: 40px;
    padding: 0 5%;
}

.music-title {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 700;
}

/* grid ของรูป */
.music-section .music-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

/* override content-item เฉพาะใน music-section */
.music-section .content-item {
    display: block;          /* ยกเลิก flex เดิม */
}

/* รูป */
.music-section .item-image {
    width: 100%;
    aspect-ratio: 1 / 1;     /* ให้เป็นสี่เหลี่ยม */
    margin-bottom: 12px;
}

.music-section .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ข้อความ */
.music-section .item-text ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.music-section .item-text li {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 1px;
    font-weight: 500;
}

@media (max-width: 991px) {
    main {
        padding-top: 10px;
    }
    .music-service-title {
        font-weight: 800;
        font-size: 52px;
        margin-bottom: 10px;
    }
    .music-service-description {
        font-size: 22px;
    }
    .world-map {
        width: 100%;
        height: auto;
    }
    .hero-content-wrapper {
        gap: 40px;
    }
    .map-container {
        height: auto;
    }
    .showbiz-black-bg {
        padding-top: 0.1%;
    }
    .showbiz-social {
        margin-top: -10px;
    }
    .music-section .music-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .music-section .item-text li {
        font-size: 16px;
    }
    .content-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .country-section {
        margin: 12% 5% 32px 5%;
    }
    .country-list .content-item,
    .country-list .content-item:nth-child(even) {
        flex-direction: column;
        text-align: left;
    }
}