/*
Theme Name: Mobarak K-ON
Theme URI: http://mobarak-on.com
Author: Mobara Light Music Association
Author URI: http://mobarak-on.com
Description: 茂原軽音楽協会 公式サイトテーマ
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: mobarak-kon
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E8472A;
  --dark: #1a1a1a;
  --white: #fff;
  --bg-warm: #fff8f5;
  --bg-warm2: #fff3ee;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --border: #eee;
  --radius: 12px;
  --radius-sm: 8px;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== NAV ===== */
.site-header {
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.site-logo em {
  color: var(--red);
  font-style: normal;
}

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}

.nav-menu a {
  font-size: 13px;
  color: #555;
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  color: var(--red);
}

.nav-cta a {
  border: 1.5px solid var(--dark);
  border-radius: 28px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark) !important;
  transition: background 0.2s, color 0.2s;
}

.nav-cta a:hover {
  background: var(--dark);
  color: var(--white) !important;
}

/* ===== TICKER ===== */
.news-ticker {
  background: var(--red);
  padding: 9px 28px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.ticker-label {
  background: var(--white);
  color: var(--red);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-text {
  font-size: 13px;
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-warm2) 100%);
  padding: 64px 28px 56px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-note {
  position: absolute;
  right: 60px;
  top: 24px;
  font-size: 100px;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.hero-note2 {
  position: absolute;
  right: 160px;
  bottom: 24px;
  font-size: 60px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-sub {
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 14px;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 32px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-block;
}

.btn-red:hover { opacity: 0.85; color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid #ccc;
  border-radius: 32px;
  padding: 14px 32px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--dark); }

.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-tag {
  background: rgba(232,71,42,0.08);
  color: var(--red);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
}

/* ===== SNS ROW ===== */
.sns-row {
  background: #fafafa;
  border-bottom: 0.5px solid var(--border);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sns-row-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.sns-label { font-size: 12px; color: var(--text-light); }

.sns-btn {
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s;
}

.sns-btn:hover { opacity: 0.85; color: var(--white); }
.sns-line { background: #00B900; }
.sns-ig   { background: #E1306C; }
.sns-yt   { background: #FF0000; }
.sns-tw   { background: #1DA1F2; }
.sns-fb   { background: #1877F2; }

/* ===== SECTIONS ===== */
.section {
  padding: 60px 28px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.section-title em {
  color: var(--red);
  font-style: normal;
}

.section-more {
  font-size: 13px;
  color: var(--red);
}

.section-divider {
  height: 0.5px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== EVENT CARDS ===== */
.ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .ev-grid { grid-template-columns: 1fr; }
}

.ev-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ev-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.ev-thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.ev-spring  { background: linear-gradient(135deg, #FFE4E4, #FFD4C8); }
.ev-autumn  { background: linear-gradient(135deg, #FFF4D4, #FFEAD4); }
.ev-monthly { background: linear-gradient(135deg, #D4EEFF, #D4F0FF); }

.ev-body { padding: 16px 18px; }

.ev-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.ev-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.ev-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== STATS ===== */
.stats-band {
  background: var(--red);
  padding: 48px 28px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}

@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.stat-icon { font-size: 28px; margin-bottom: 10px; }
.stat-num  { font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ===== STREET LIVE ===== */
.street-section {
  background: var(--bg-warm);
  padding: 56px 28px;
}

.street-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

@media (max-width: 600px) {
  .street-inner { grid-template-columns: 1fr; }
}

.street-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.street-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 12px;
}

.street-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.qr-box {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  min-width: 130px;
}

.qr-icon  { font-size: 48px; margin-bottom: 8px; }
.qr-label { font-size: 11px; color: var(--text-light); line-height: 1.5; }

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  padding: 56px 28px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
}

.about-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.about-text h2 em { color: var(--red); font-style: normal; }

.about-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-link { font-size: 13px; color: var(--red); }

.about-info {
  background: #f9f9f9;
  border-radius: var(--radius);
  padding: 20px 24px;
}

.about-row {
  display: flex;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
}

.about-row:last-child { border-bottom: none; }
.about-key { color: var(--text-light); min-width: 60px; flex-shrink: 0; }
.about-val { color: #333; }

/* ===== ARTIST SCROLL ===== */
.artist-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.artist-scroll::-webkit-scrollbar { height: 4px; }
.artist-scroll::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 2px; }
.artist-scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

.artist-card {
  min-width: 130px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  flex-shrink: 0;
  background: var(--white);
  transition: transform 0.2s;
}

.artist-card:hover { transform: translateY(-2px); }

.artist-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.artist-name { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.artist-genre { font-size: 11px; color: var(--text-light); }

/* ===== JOIN ===== */
.join-section {
  background: var(--dark);
  padding: 72px 28px;
  text-align: center;
}

.join-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.join-section p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.8;
}

.join-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 0.5px solid rgba(255,255,255,0.25);
  border-radius: 32px;
  padding: 14px 32px;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: rgba(255,255,255,0.8); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  border-top: 0.5px solid rgba(255,255,255,0.06);
  padding: 24px 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-nav { display: flex; gap: 20px; }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-warm2) 100%);
  padding: 40px 28px 44px;
  position: relative;
  overflow: hidden;
}

.page-hero-inner { max-width: 1100px; margin: 0 auto; }

.page-hero-note {
  position: absolute;
  right: 60px;
  top: 16px;
  font-size: 80px;
  opacity: 0.07;
  pointer-events: none;
}

.breadcrumb { font-size: 12px; color: var(--text-light); margin-bottom: 14px; }
.breadcrumb em { color: var(--red); font-style: normal; }
.breadcrumb a { color: var(--text-light); }

.page-hero h1 { font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero .lead { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .nav-menu { display: none; }
  .section { padding: 40px 20px; }
}
