/*
Theme Name: SuperSport
Theme URI: https://example.com/supersport
Author: SuperSport Studio
Author URI: https://example.com
Description: ธีม WordPress แบบ Custom สำหรับเว็บไซต์เอ็นเตอร์เทนเมนต์ด้านกีฬา มวย และอีสปอร์ต โทนสีขาว–ฟ้า–ทอง เรียบหรู ดูแพง โหลดเร็ว รองรับทุกหน้าจอ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: supersport
Tags: sports, esports, entertainment, responsive, custom-menu, featured-images
*/

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */
:root{
  /* โทนจากโลโก้ */
  --ink:        #0A1524;   /* กรมท่าเข้ม เกือบดำ (ตัวอักษร/พื้นมืด) */
  --navy:       #0E2745;   /* กรมท่า */
  --navy-2:     #123A63;   /* กรมท่าอ่อน */
  --gold:       #C9A24B;   /* ทองหลัก */
  --gold-lite:  #F0D488;   /* ทองไฮไลต์ */
  --gold-deep:  #A9832F;   /* ทองเข้ม (เงา) */
  --blue:       #17A9EE;   /* ฟ้าไฟฟ้า */
  --blue-deep:  #0B5FA5;   /* ฟ้าเข้ม */
  --paper:      #FFFFFF;   /* ขาว */
  --mist:       #F4F8FC;   /* ขาวอมฟ้าอ่อน (พื้นเซกชัน) */
  --line:       #E4EBF3;   /* เส้นขอบ */
  --muted:      #5A6B80;   /* เทาอมน้ำเงิน (ข้อความรอง) */

  --grad-gold:  linear-gradient(135deg, var(--gold-lite) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  --grad-blue:  linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  --grad-dark:  radial-gradient(120% 140% at 80% -10%, var(--navy-2) 0%, var(--navy) 40%, var(--ink) 100%);

  --shadow-sm:  0 2px 8px rgba(10,21,36,.06);
  --shadow-md:  0 12px 32px rgba(10,21,36,.10);
  --shadow-gold:0 10px 30px rgba(201,162,75,.35);

  --radius:     16px;
  --radius-sm:  10px;
  --maxw:       1200px;
  --header-h:   76px;

  --font-display: "Kanit", system-ui, sans-serif;
  --font-body:    "IBM Plex Sans Thai", system-ui, sans-serif;
}

/* =========================================================
   2. RESET & BASE
   ========================================================= */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.7;
  color:var(--ink);
  background:var(--paper);
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--blue-deep); text-decoration:none; transition:color .2s ease; }
a:hover{ color:var(--gold-deep); }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:700; line-height:1.15; margin:0 0 .5em; color:var(--ink); }
p{ margin:0 0 1em; }
ul{ margin:0; padding:0; list-style:none; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:24px; }
.section{ padding:88px 0; }
.section--mist{ background:var(--mist); }
.section--dark{ background:var(--grad-dark); color:#DCE6F2; }
.section--dark h2,.section--dark h3{ color:#fff; }

/* accessibility */
:focus-visible{ outline:3px solid var(--blue); outline-offset:2px; border-radius:4px; }
.screen-reader-text{
  position:absolute!important; width:1px; height:1px; overflow:hidden;
  clip:rect(1px,1px,1px,1px); white-space:nowrap;
}
.skip-link{
  position:absolute; left:-999px; top:0; z-index:1000;
  background:var(--ink); color:#fff; padding:12px 18px; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; color:#fff; }

/* =========================================================
   3. SHARED UI — eyebrow, headings, buttons
   ========================================================= */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-display); font-weight:600; font-size:.82rem;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold-deep);
}
.eyebrow::before{
  content:""; width:26px; height:2px;
  background:var(--grad-gold); border-radius:2px;
}
.section--dark .eyebrow{ color:var(--gold-lite); }

.section-head{ max-width:680px; margin:0 auto 52px; text-align:center; }
.section-head h2{ font-size:clamp(1.9rem,4vw,2.7rem); margin-top:.35em; }
.section-head p{ color:var(--muted); font-size:1.06rem; }
.section--dark .section-head p{ color:#AEC0D6; }

.btn{
  --btn-fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--font-display); font-weight:600; font-size:1rem;
  padding:13px 26px; border-radius:999px; border:0; cursor:pointer;
  color:var(--btn-fg); text-align:center; white-space:nowrap;
  transition:transform .18s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn svg{ width:18px; height:18px; }

.btn--gold{ background:var(--grad-gold); color:var(--ink); box-shadow:var(--shadow-gold); }
.btn--gold:hover{ color:var(--ink); box-shadow:0 14px 36px rgba(201,162,75,.5); }

.btn--blue{ background:var(--grad-blue); box-shadow:0 10px 26px rgba(11,95,165,.35); }
.btn--blue:hover{ color:#fff; }

.btn--ghost{
  background:transparent; color:var(--navy);
  box-shadow:inset 0 0 0 2px var(--line);
}
.btn--ghost:hover{ color:var(--navy); box-shadow:inset 0 0 0 2px var(--gold); }
.section--dark .btn--ghost{ color:#fff; box-shadow:inset 0 0 0 2px rgba(255,255,255,.25); }
.section--dark .btn--ghost:hover{ color:#fff; box-shadow:inset 0 0 0 2px var(--gold-lite); }

.btn--lg{ padding:16px 34px; font-size:1.08rem; }

/* signature: เส้นเฉียงสายฟ้า (echo โลโก้) */
.bolt-divider{
  height:4px; width:70px; margin:18px auto 0;
  background:var(--grad-gold);
  clip-path:polygon(0 40%,55% 40%,45% 0,100% 60%,45% 60%,55% 100%);
}

/* =========================================================
   4. HEADER
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.86);
  backdrop-filter:saturate(160%) blur(12px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s ease, background .25s ease;
}
.site-header.is-stuck{ box-shadow:var(--shadow-md); background:rgba(255,255,255,.96); }
.header-inner{
  height:var(--header-h);
  display:flex; align-items:center; gap:24px;
}
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand img{ height:52px; width:auto; }
.brand-text{
  font-family:var(--font-display); font-weight:800; font-size:1.35rem;
  letter-spacing:.02em; line-height:1; color:var(--ink);
}
.brand-text span{
  background:var(--grad-gold);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* nav */
.primary-nav{ margin-left:auto; }
.primary-nav ul{ display:flex; align-items:center; gap:6px; }
.primary-nav a{
  display:block; padding:10px 16px; border-radius:999px;
  font-family:var(--font-display); font-weight:500; font-size:1rem; color:var(--ink);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a{
  color:var(--navy); background:var(--mist);
}

.header-actions{ display:flex; align-items:center; gap:12px; flex-shrink:0; }

/* hamburger */
.nav-toggle{
  display:none; width:46px; height:46px; border:0; border-radius:12px;
  background:var(--mist); cursor:pointer; padding:0;
}
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{
  content:""; display:block; width:22px; height:2px; margin:0 auto;
  background:var(--ink); border-radius:2px; transition:transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before{ transform:translateY(-7px); }
.nav-toggle span::after{ transform:translateY(5px); }
body.nav-open .nav-toggle span{ background:transparent; }
body.nav-open .nav-toggle span::before{ transform:rotate(45deg); }
body.nav-open .nav-toggle span::after{ transform:rotate(-45deg) translateY(-2px); }

/* =========================================================
   5. HERO
   ========================================================= */
.hero{
  position:relative; overflow:hidden;
  background:var(--grad-dark); color:#EAF1FA;
  padding:96px 0 104px;
}
.hero::before,.hero::after{
  content:""; position:absolute; border-radius:50%; filter:blur(60px); opacity:.5; pointer-events:none;
}
.hero::before{ width:420px; height:420px; top:-120px; right:-80px; background:radial-gradient(circle,var(--blue) 0%,transparent 70%); }
.hero::after{ width:360px; height:360px; bottom:-140px; left:-60px; background:radial-gradient(circle,var(--gold) 0%,transparent 70%); opacity:.35; }
.hero .container{ position:relative; z-index:2; }
.hero-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:48px; align-items:center; }

.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 16px; border-radius:999px; margin-bottom:22px;
  font-family:var(--font-display); font-weight:600; font-size:.85rem; letter-spacing:.06em;
  color:var(--gold-lite);
  background:rgba(201,162,75,.12); border:1px solid rgba(240,212,136,.35);
}
.hero-badge .dot{ width:8px; height:8px; border-radius:50%; background:var(--gold-lite); box-shadow:0 0 12px var(--gold-lite); }
.hero h1{
  color:#fff; font-size:clamp(2.3rem,5.4vw,4rem); font-weight:800; margin-bottom:.35em;
}
.hero h1 em{ font-style:normal; background:var(--grad-gold); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p.lead{ font-size:1.18rem; color:#B9C9DC; max-width:520px; margin-bottom:32px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; }

.hero-stats{ display:flex; gap:30px; margin-top:40px; flex-wrap:wrap; }
.hero-stat b{ font-family:var(--font-display); font-weight:800; font-size:1.9rem; color:var(--gold-lite); display:block; line-height:1; }
.hero-stat span{ font-size:.9rem; color:#93A6BD; }

/* hero visual card */
.hero-visual{ position:relative; }
.glass-card{
  background:linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px; padding:26px; backdrop-filter:blur(6px);
  box-shadow:0 24px 60px rgba(0,0,0,.35);
}
.glass-card h3{ color:#fff; font-size:1.15rem; margin-bottom:16px; display:flex; align-items:center; gap:10px; }
.glass-card h3 .live{
  font-size:.7rem; font-weight:700; letter-spacing:.1em; color:#fff;
  background:#E23; padding:3px 8px; border-radius:6px; animation:pulse 1.6s infinite;
}
@keyframes pulse{ 0%,100%{ opacity:1 } 50%{ opacity:.55 } }
.match-row{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 16px; border-radius:12px; margin-bottom:10px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08);
}
.match-row:last-child{ margin-bottom:0; }
.match-team{ display:flex; align-items:center; gap:9px; font-weight:600; color:#EAF1FA; font-size:.96rem; }
.match-team .ic{ width:30px; height:30px; border-radius:8px; background:var(--grad-blue); display:grid; place-items:center; font-size:15px; }
.match-score{ font-family:var(--font-display); font-weight:800; color:var(--gold-lite); font-size:1.05rem; }
.match-tag{ font-size:.72rem; color:#8EA3BC; letter-spacing:.05em; }

/* =========================================================
   6. LOGO MARQUEE / PARTNERS
   ========================================================= */
.logo-strip{ display:flex; flex-wrap:wrap; gap:16px; justify-content:center; }
.logo-chip{
  display:flex; align-items:center; gap:10px;
  padding:16px 26px; border-radius:14px; background:var(--paper);
  border:1px solid var(--line); box-shadow:var(--shadow-sm);
  font-family:var(--font-display); font-weight:600; color:var(--navy); font-size:1.05rem;
  transition:transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.logo-chip:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:var(--gold); }
.logo-chip .mark{
  width:34px; height:34px; border-radius:9px; display:grid; place-items:center;
  background:var(--grad-gold); color:var(--ink); font-weight:800;
}

/* =========================================================
   7. CARD GRIDS (services / features)
   ========================================================= */
.grid{ display:grid; gap:24px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }

.card{
  position:relative; background:var(--paper);
  border:1px solid var(--line); border-radius:var(--radius);
  padding:30px 28px; box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  overflow:hidden;
}
.card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:4px;
  background:var(--grad-gold); transform:scaleX(0); transform-origin:left;
  transition:transform .3s ease;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.card:hover::before{ transform:scaleX(1); }
.card .ic{
  width:54px; height:54px; border-radius:14px; display:grid; place-items:center;
  background:linear-gradient(135deg,rgba(23,169,238,.14),rgba(201,162,75,.14));
  color:var(--blue-deep); margin-bottom:18px;
}
.card .ic svg{ width:26px; height:26px; }
.card h3{ font-size:1.22rem; margin-bottom:.4em; }
.card p{ color:var(--muted); font-size:.98rem; margin-bottom:0; }
.card .more{
  display:inline-flex; align-items:center; gap:6px; margin-top:16px;
  font-family:var(--font-display); font-weight:600; font-size:.92rem; color:var(--gold-deep);
}
.card .more svg{ width:15px; height:15px; transition:transform .2s ease; }
.card:hover .more svg{ transform:translateX(4px); }

/* =========================================================
   8. STATS BAND (dark)
   ========================================================= */
.stats-band{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat b{
  font-family:var(--font-display); font-weight:800; font-size:clamp(2rem,5vw,3rem);
  background:var(--grad-gold); -webkit-background-clip:text; background-clip:text; color:transparent;
  display:block; line-height:1;
}
.stat span{ color:#9FB2C9; font-size:.95rem; margin-top:8px; display:block; }

/* =========================================================
   9. WHY / FEATURE SPLIT
   ========================================================= */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.feature-list li{
  display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line);
}
.feature-list li:last-child{ border-bottom:0; }
.feature-list .tick{
  flex-shrink:0; width:38px; height:38px; border-radius:11px; display:grid; place-items:center;
  background:var(--grad-blue); color:#fff;
}
.feature-list h4{ margin:0 0 3px; font-size:1.08rem; }
.feature-list p{ margin:0; color:var(--muted); font-size:.96rem; }

.visual-panel{
  border-radius:var(--radius); overflow:hidden; position:relative;
  background:var(--grad-dark); min-height:380px; padding:34px;
  display:flex; flex-direction:column; justify-content:flex-end;
  box-shadow:var(--shadow-md);
}
.visual-panel::before{
  content:""; position:absolute; width:300px; height:300px; top:-80px; right:-60px;
  background:radial-gradient(circle,var(--blue) 0%,transparent 70%); filter:blur(40px); opacity:.55;
}
.visual-panel .badge-float{
  position:relative; z-index:2; align-self:flex-start;
  background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.18);
  color:#fff; padding:8px 16px; border-radius:999px; font-family:var(--font-display);
  font-weight:600; font-size:.85rem; margin-bottom:auto;
}
.visual-panel h3{ position:relative; z-index:2; color:#fff; font-size:1.6rem; }
.visual-panel p{ position:relative; z-index:2; color:#B9C9DC; margin:0; }

/* =========================================================
   10. CTA BAND
   ========================================================= */
.cta-band{ position:relative; overflow:hidden; border-radius:24px; padding:56px; text-align:center;
  background:var(--grad-dark); box-shadow:var(--shadow-md); }
.cta-band::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(60% 120% at 50% 0%, rgba(23,169,238,.25) 0%, transparent 60%);
}
.cta-band > *{ position:relative; z-index:2; }
.cta-band h2{ color:#fff; font-size:clamp(1.8rem,4vw,2.6rem); }
.cta-band p{ color:#B9C9DC; max-width:560px; margin:0 auto 28px; font-size:1.08rem; }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* =========================================================
   11. PAGE HERO (inner pages)
   ========================================================= */
.page-hero{ background:var(--grad-dark); color:#fff; padding:72px 0; text-align:center; position:relative; overflow:hidden; }
.page-hero::after{
  content:""; position:absolute; width:360px; height:360px; bottom:-160px; right:-60px;
  background:radial-gradient(circle,var(--gold) 0%,transparent 70%); filter:blur(50px); opacity:.3;
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{ color:#fff; font-size:clamp(2rem,5vw,3rem); }
.page-hero p{ color:#B9C9DC; max-width:620px; margin:8px auto 0; font-size:1.1rem; }
.breadcrumb{ font-size:.9rem; color:#8EA3BC; margin-bottom:14px; }
.breadcrumb a{ color:var(--gold-lite); }

/* generic page content */
.entry-content{ max-width:820px; margin-inline:auto; }
.entry-content h2{ font-size:1.7rem; margin-top:1.4em; }
.entry-content h3{ font-size:1.3rem; margin-top:1.2em; }
.entry-content img{ border-radius:var(--radius-sm); margin:1.2em 0; }
.entry-content blockquote{
  border-left:4px solid var(--gold); background:var(--mist);
  padding:16px 22px; margin:1.4em 0; border-radius:0 10px 10px 0; color:var(--navy);
}

/* =========================================================
   12. FOOTER
   ========================================================= */
.site-footer{ background:var(--ink); color:#AEBFD3; padding:64px 0 0; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:44px; }
.footer-brand .brand-text{ color:#fff; }
.footer-brand img{ max-height:56px; width:auto; }
.footer-brand p{ color:#8EA1B8; max-width:300px; margin-top:14px; font-size:.96rem; }
.footer-col h4{ color:#fff; font-size:1.05rem; margin-bottom:16px; }
.footer-col a{ color:#AEBFD3; display:block; padding:6px 0; font-size:.96rem; }
.footer-col a:hover{ color:var(--gold-lite); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; padding:6px 0; font-size:.96rem; }
.footer-contact svg{ width:18px; height:18px; color:var(--gold-lite); flex-shrink:0; margin-top:3px; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:40px; height:40px; border-radius:11px; display:grid; place-items:center;
  background:rgba(255,255,255,.06); color:#fff; border:1px solid rgba(255,255,255,.08);
}
.footer-social a:hover{ background:var(--grad-gold); color:var(--ink); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08); margin-top:8px; padding:22px 0;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.9rem; color:#7E93AC;
}

/* =========================================================
   13. RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:520px; }
}
@media (max-width:860px){
  /* mobile nav */
  .nav-toggle{ display:block; margin-left:auto; }
  .primary-nav{
    position:fixed; inset:var(--header-h) 0 auto 0; margin:0;
    background:var(--paper); border-bottom:1px solid var(--line);
    box-shadow:var(--shadow-md);
    transform:translateY(-12px); opacity:0; pointer-events:none;
    transition:transform .25s ease, opacity .2s ease;
    max-height:calc(100vh - var(--header-h)); overflow-y:auto;
  }
  body.nav-open .primary-nav{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .primary-nav ul{ flex-direction:column; align-items:stretch; gap:2px; padding:12px 18px 18px; }
  .primary-nav a{ padding:14px 16px; border-radius:12px; }
  .header-actions .btn span.lbl{ display:inline; }
}
@media (max-width:680px){
  body{ font-size:16px; }
  .section{ padding:60px 0; }
  .grid-3,.grid-2{ grid-template-columns:1fr; }
  .stats-band{ grid-template-columns:1fr 1fr; gap:30px 16px; }
  .split{ grid-template-columns:1fr; gap:34px; }
  .footer-top{ grid-template-columns:1fr; gap:30px; }
  .cta-band{ padding:38px 24px; }
  .header-actions .btn--ghost{ display:none; } /* ซ่อนปุ่มติดต่อรองบนจอเล็กสุด เหลือปุ่มหลัก */
  .brand-text{ display:none; }                  /* เหลือโลโก้อย่างเดียวบนมือถือ */
  .hero-stats{ gap:22px; }
}
@media (max-width:400px){
  .header-actions .btn .lbl{ display:none; }     /* ปุ่มเหลือไอคอนบนจอเล็กมาก */
  .header-actions .btn{ padding:12px 14px; }
}

/* reduced motion */
@media (prefers-reduced-motion:reduce){
  *{ animation:none!important; transition:none!important; scroll-behavior:auto!important; }
}

/* WordPress core alignment helpers */
.aligncenter{ margin-inline:auto; }
.alignleft{ float:left; margin:0 24px 16px 0; }
.alignright{ float:right; margin:0 0 16px 24px; }
.wp-caption-text{ font-size:.86rem; color:var(--muted); text-align:center; }

/* =========================================================
   14. v4 — ปรับปรุงตาม feedback (LINE, โลโก้จริง, ตัดเมนู)
   ========================================================= */

/* ปุ่มไลน์สีเขียว */
.btn--line{ background:#06C755; color:#fff; box-shadow:0 10px 26px rgba(6,199,85,.35); }
.btn--line:hover{ color:#fff; background:#05b24b; }
.btn--line svg{ width:20px; height:20px; }

/* ปุ่มติดต่อเราบนพื้นมืด อ่านชัดขึ้น */
.section--dark .btn--ghost, .cta-band .btn--ghost{
  background:rgba(255,255,255,.16); color:#fff;
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.6);
}
.section--dark .btn--ghost:hover, .cta-band .btn--ghost:hover{
  background:rgba(255,255,255,.24); color:#fff; box-shadow:inset 0 0 0 2px var(--gold-lite);
}

/* ตัดเมนูสามขีดออก (ไม่มีเมนูบนมือถือแล้ว) */
.nav-toggle{ display:none !important; }

/* hero คอลัมน์เดียว (ตัดการ์ดผลแข่งออก) */
.hero-grid{ grid-template-columns:1fr; }
.hero-copy{ max-width:780px; }

/* การ์ดโลโก้พาร์ทเนอร์/แบรนด์ */
.brand-logos{ display:grid; gap:22px; }
.brand-logos.count-1{ grid-template-columns:minmax(280px,380px); justify-content:center; }
.brand-logos.count-3{ grid-template-columns:repeat(3,1fr); }
.logo-card{
  background:#fff; border:1px solid var(--line); border-radius:18px;
  box-shadow:var(--shadow-sm); padding:30px 26px; min-height:170px;
  display:flex; align-items:center; justify-content:center;
  transition:transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.logo-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--gold); }
.logo-card img{ max-height:110px; width:auto; object-fit:contain; }
.logo-card--dark{ background:var(--ink); border-color:rgba(255,255,255,.10); }
.logo-card--dark:hover{ border-color:var(--gold-lite); }
@media (max-width:680px){ .brand-logos.count-3{ grid-template-columns:1fr 1fr; } }
@media (max-width:430px){ .brand-logos.count-3{ grid-template-columns:1fr; } }

/* ติดต่อเรา — LINE ID + ปุ่มเพิ่มเพื่อน ใน footer */
.footer-lineid{ font-family:var(--font-display); font-weight:600; color:#fff; }
.footer-contact .lineid-add{
  display:inline-flex; align-items:center; gap:8px; margin-top:10px;
  background:#06C755; color:#fff; padding:9px 20px; border-radius:999px;
  font-family:var(--font-display); font-weight:600; font-size:.95rem;
}
.footer-contact .lineid-add:hover{ background:#05b24b; color:#fff; }
.footer-contact .lineid-add svg{ width:19px; height:19px; margin-top:0; color:#fff; }
