*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Outfit', sans-serif; background: #f0f0f0; color: #1a1a1a; font-size: 16px; }

/* ── HEADER ── */
.header { background: #1a1a1a; padding: 12px 32px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.logo { display: flex; flex-direction: column; }
.logo-main { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.2px; }
.logo-main span { color: #ce2939; }
.logo-sub { font-size: 10px; color: #666; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 1px; }
.nav { display: flex; gap: 4px; align-items: center; }
.nav a { font-size: 14px; font-weight: 500; color: #aaa; padding: 5px 10px; text-decoration: none; transition: color .15s; }
.nav a:hover { color: #fff; }
.nav a.active { color: #fff; border-bottom: 2px solid #ce2939; padding-bottom: 3px; }

/* ── HERO ── */
.hero { display: flex; min-height: 280px; }
.hero-left { flex: 1; background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0f 100%); padding: 52px 44px; display: flex; flex-direction: column; justify-content: center; }
.hero-label { font-size: 11px; font-weight: 700; color: #ce2939; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px; }
.hero h1 { font-size: 38px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.hero-tagline { font-size: 17px; font-weight: 500; color: rgba(255,255,255,.45); letter-spacing: .3px; margin-bottom: 20px; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: 30px; max-width: 440px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-red { background: #ce2939; color: #fff; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; padding: 11px 24px; border-radius: 5px; text-decoration: none; transition: background .15s; display: inline-block; }
.btn-red:hover { background: #b02231; }
.btn-outline { border: 1.5px solid rgba(255,255,255,.3); color: #fff; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; padding: 11px 24px; border-radius: 5px; text-decoration: none; transition: border-color .15s, color .15s; display: inline-block; }
.btn-outline:hover { border-color: rgba(255,255,255,.7); }
.hero-right { flex: 1; background: linear-gradient(160deg, #2a0a0a, #1a1a1a); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-right::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, rgba(206,41,57,.18) 0%, transparent 65%); }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── EVENTS ── */
.events { background: #fff; padding: 52px 32px; }
.events-inner { max-width: 1100px; margin: 0 auto; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; }
.section-label { font-size: 11px; font-weight: 700; color: #ce2939; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
.section-title { font-size: 22px; font-weight: 800; color: #1a1a1a; }
.link-red { color: #ce2939; font-size: 13px; font-weight: 600; text-decoration: none; }
.link-red:hover { text-decoration: underline; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.event-card { border: 1px solid #e8e8e8; border-radius: 7px; overflow: hidden; background: #fff; }
.event-thumb { width: 100%; aspect-ratio: 640 / 400; object-fit: cover; display: block; }
.event-badge { padding: 8px 14px; font-size: 12px; font-weight: 700; color: #fff; letter-spacing: .3px; }
.event-badge.red { background: #ce2939; }
.event-badge.dark { background: #1a1a1a; }
.event-body { padding: 16px; }
.event-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 7px; color: #1a1a1a; }
.event-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 12px; }
.event-loc { font-size: 13px; color: #ce2939; font-weight: 500; }
.event-loc i { font-size: 10px; margin-right: 4px; }
.event-card-link { text-decoration: none; color: inherit; display: block; transition: transform .12s ease, box-shadow .12s ease; }
.event-card-link:hover { transform: translateY(-2px); }
.event-card-link:hover .event-card { box-shadow: 0 6px 20px rgba(0,0,0,.08); border-color: #d8d8d8; }
.news-detail-image { width: 100%; max-height: 460px; object-fit: cover; border-radius: 8px; display: block; margin-bottom: 24px; }
.news-detail-body { font-size: 15px; line-height: 1.7; color: #333; }
.news-detail-body img { max-width: 100%; height: auto; border-radius: 6px; }

/* ── INFO BOXES ── */
.info { background: #f5f5f5; padding: 52px 32px; border-top: 1px solid #e8e8e8; }
.info-inner { max-width: 1100px; margin: 0 auto; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.info-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 7px; padding: 18px; display: flex; gap: 14px; align-items: flex-start; cursor: pointer; transition: box-shadow .15s; }
.info-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,.07); }
.info-icon { width: 38px; height: 38px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.info-icon.red { background: #ce2939; color: #fff; }
.info-icon.dark { background: #1a1a1a; color: #fff; }
.info-icon.gray { background: #ebebeb; color: #555; }
.info-card h3 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 5px; }
.info-card p { font-size: 13px; color: #888; line-height: 1.55; margin-bottom: 7px; }
.info-card .more { font-size: 12px; font-weight: 600; color: #ce2939; text-decoration: none; }

/* ── FOOTER ── */
.footer { background: #1a1a1a; padding: 32px 32px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 22px; }
.footer-brand { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-brand span { color: #ce2939; }
.footer-contact { font-size: 13px; color: #666; line-height: 2; }
.footer-contact i { color: #ce2939; width: 16px; font-size: 12px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; padding-top: 4px; }
.footer-links a { font-size: 13px; color: #666; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-links .link-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.footer-bottom { border-top: 1px solid #2e2e2e; padding: 14px 0; display: flex; justify-content: space-between; }
.footer-bottom span { font-size: 12px; color: #444; }

/* ── PAGE BANNER (inner pages) ── */
.page-banner { background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0f 100%); padding: 36px 32px; }
.page-banner h1 { font-size: 28px; font-weight: 800; color: #fff; margin: 0; }

/* ── PAGE CONTENT (inner pages) ── */
.page-content { max-width: 900px; margin: 0 auto; padding: 40px 32px; line-height: 1.75; }
.page-content h1, .page-content h2, .page-content h3 { margin-bottom: 14px; }
.page-content p { margin-bottom: 14px; }

/* ── GALLERY PHOTO GRID ── */
.gallery-photos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-photos-grid a { display: block; overflow: hidden; border-radius: 4px; }
.gallery-photos-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform .2s; }
.gallery-photos-grid a:hover img { transform: scale(1.05); }

/* ── WIDE (≥1400px) ── */
@media (min-width: 1400px) {
  .hero { min-height: 440px; max-height: 440px; }
  .hero-left { padding: 64px 60px 64px clamp(60px, 7vw, 160px); }
  .hero h1 { font-size: 48px; }
  .hero-tagline { font-size: 19px; }
}

/* ── TABLET (≤900px) ── */
@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .gallery-photos-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 30px; }
  .hero-left { padding: 36px 28px; }
}

/* ── MOBILE (≤640px) ── */
@media (max-width: 640px) {
  .gallery-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .header { padding: 10px 16px; flex-wrap: wrap; gap: 8px; }
  .nav { gap: 2px; flex-wrap: wrap; }
  .nav a { font-size: 13px; padding: 4px 8px; }
  .hero { flex-direction: column; min-height: unset; }
  .hero-left { padding: 28px 20px; }
  .hero h1 { font-size: 26px; }
  .hero-tagline { font-size: 15px; }
  .hero-sub { font-size: 14px; margin-bottom: 20px; }
  .hero-right { height: 200px; flex: unset; }
  .hero-right img { height: 200px; }
  .events { padding: 32px 16px; }
  .events-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; gap: 8px; align-items: flex-start; }
  .info { padding: 32px 16px; }
  .info-grid { grid-template-columns: 1fr; margin-bottom: 10px; }
  .footer { padding: 24px 16px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .footer-links { align-items: flex-start; }
  .footer-links .link-row { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .page-banner { padding: 24px 16px; }
  .page-banner h1 { font-size: 22px; }
  .page-content { padding: 24px 16px; }
}
