﻿main {
  padding-top: 10px;
  gap: 40px;
}

.music-label-section .text-header {
    text-align: center;
}

.hero-title p {
    margin: 28px auto 0;
    max-width: 820px;
    font-size: 20px;
    line-height: 1.6;
    color: #222;
    text-align: center;
}

.strategy-section {
    font-family: 'Inter', sans-serif;
}

/* row เต็มความกว้าง */
.strategy-row {
    position: relative;
    padding: 80px 0;
}

.strategy-row.white {
    background: #fff;
}

.strategy-row.yellow {
    background: #ffe600;
}

/* container บีบความกว้าง */
.strategy-content {
    position: relative;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    gap: 80px;
}

/* content text */
.content {
    max-width: 480px;
}

.content h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 16px 0;
}

.desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* icon badge */
.icon-badge {
    width: 36px;
    height: 36px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* checklist */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 10px;
}

.check-list i {
    color: #000;
    font-size: 14px;
}

/* image box */
.image-box {
    width: 420px;
    height: 260px;
    background: #e5e5e5;
    border-radius: 20px;
    flex-shrink: 0;
}

.image-box img {
    width: 100%;
    border-radius: 12px;
}

/* responsive */
@media (max-width: 992px) {
    .strategy-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .content {
        max-width: 100%;
    }

    .check-list li {
        justify-content: center;
    }

    .image-box {
        width: 100%;
        max-width: 420px;
    }
}

.floating-icon {
    position: absolute;
    width: 180px;
    pointer-events: none;
    user-select: none;
}

.floating-icon img {
    width: 100%;
    height: auto;
    display: block;
}

/* position */
.top-right {
    top: -100px;
    right: -90px;
}

.bottom-left {
    bottom: -80px;
    left: -80px;
}

/* optional animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.floating-icon {
    animation: float 4s ease-in-out infinite;
}


/* gallery */
.mm-masonry-section {
    padding: 60px 0;
    background: #fff;
}

/* Masonry container */
.mm-masonry {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;

    column-count: 6;      /* desktop */
    column-gap: 24px;
}

/* item */
.masonry-item {
    display: inline-block;   /* สำคัญมาก */
    width: 100%;
    margin-bottom: 24px;

    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.masonry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}

/* image */
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .mm-masonry {
        column-count: 3;
        column-gap: 16px;
    }

    .masonry-item {
        margin-bottom: 16px;
    }
}
