﻿main {
  padding-top: 10px;
}

.hero-title {
  padding: 80px 20px 10px;
  text-align: center;
  background: #fff;
}

.hero-title-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title h1 {
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: #000;
}

.hero-title p {
  margin: 28px auto 0;
  max-width: 820px;
  font-size: 20px;
  line-height: 1.6;
  color: #222;
}

@media (max-width: 768px) {
  .hero-title {
    padding: 100px 20px 60px;
  }

  .hero-title h1 {
    font-size: 36px;
  }

  .hero-title p {
    font-size: 16px;
  }
}

.hero-bg {
  position: relative;
  min-height: 60vh;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* center area */
.hero-center {
  position: relative;
  z-index: 2;
}

.bg-icon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* headphone */
.bg-icon.headphone {
  top: calc(35% - 260px);
  left: calc(45% - 420px);
  width: 220px;
}

/* yellow note */
.bg-icon.note-yellow {
  top: calc(40% - 300px);
  left: calc(50% + 300px);
  width: 180px;
}

/* black note */
.bg-icon.note-black {
  top: calc(50% - 40px);
  left: calc(49% + 420px);
  width: 90px;
}

/* vinyl */
.bg-icon.vinyl {
  top: calc(38% + 220px);
  left: calc(50% - 420px);
  width: 130px;
}

/* sun */
.bg-icon.sun {
  top: calc(40% + 260px);
  left: calc(45% + 300px);
  width: 170px;
}

@media (max-width: 768px) {
  .bg-icon.headphone,
  .bg-icon.vinyl {
    display: none;
  }

  .bg-icon.sun {
    width: 90px;
    right: 6%;
  }

  .bg-icon {
    display: none;
  }
}

.hero-center {
  position: relative;
  width: min(680px, 90vw);
  aspect-ratio: 1 / 1;
}

/* วงเหลือง */
.bg-disk {
  width: 100%;
  height: auto;
  display: block;
}

/* วงขาวตรงกลาง */
.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;

    /* 👇 คุมขนาดตรงนี้ */
    aspect-ratio: 1 / 1;

    transform: translate(-50%, -50%);
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.center-circle p {
  margin: 0;
}

.center-circle h3 {
  margin: 0;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
}

.center-circle span {
  max-width: 160px;
}

@media (max-width: 768px) {
    .center-circle {
        top: 45%;
        font-size: 12px;
        font-weight: 700;
    }

    .center-circle h3 {
      font-size: clamp(28px, 5vw, 36px);
      font-weight: 800;
    }
}

.service-item {
  position: absolute;
  width: 140px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
  color: #000;
}

.service-item a {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
  text-decoration: none;   /* ❗ เอาเส้นใต้ลิงก์ออก */
  color: #000;             /* ใช้สีเดียวกับ text เดิม */

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-item img {
  width: 28px;
  height: auto;
  margin-bottom: 6px;
}

.service-item a img {
  width: 26px;
  height: auto;
  margin-bottom: 6px;
}

.service-item a span {
  font-size: 14px;
  font-weight: 400;        /* ไม่ bold ตามที่ขอ */
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.service-item a:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

.service-item a:hover img {
  transform: scale(1.05);
}

.service-item a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.6);
  border-radius: 6px;
}

/* บน (12 นาฬิกา) */
.service-item.full {
  top: 20%;
  left: 45%;
  transform: translateX(-50%);
}

/* ขวาบน (2 นาฬิกา) */
.service-item.event {
  top: 32%;
  right: 15%;
}

/* ขวาล่าง (4–5 นาฬิกา) */
.service-item.vdo {
  bottom: 26%;
  right: 20%;
}

/* ล่างซ้าย (7 นาฬิกา) */
.service-item.media {
  bottom: 20%;
  left: 29%;
}

/* ซ้าย (9 นาฬิกา) */
.service-item.design {
  top: 42%;
  left: 14%;
}

@media (max-width: 768px) {
  .service-item {
    display: none;
  }
}

.clients-section {
  background: #f5f5f5;
  padding: 60px 20px;
}

.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 60px;
  color: #000;
}

/* GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

/* CARD */
.client-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 110px;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.client-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 768px) {
  .clients-section {
    padding: 50px 16px;
  }

  .clients-title {
    margin-bottom: 40px;
  }

  .client-card {
    padding: 20px;
  }
}
