/* Southern Amusement Company — clean, modern single-page site (no framework) */

:root{
  --bg: #0b0d12;
  --bg2:#0f1320;
  --panel:#101524;
  --panel2:#0f1422;
  --text:#e9edf7;
  --muted:#a6afc3;
  --border: rgba(255,255,255,.10);

  --accent:#40c4ff;   /* neon cyan */
  --accent2:#8b5cf6;  /* violet */
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(64,196,255,.14), transparent 55%),
              radial-gradient(1000px 600px at 85% 10%, rgba(139,92,246,.12), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .9; }
img{ max-width:100%; display:block; }

.container{
  width:min(1100px, calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px; top:10px;
  background:#fff; color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:10px; }

.sr-only{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); border:0;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid transparent;
  backdrop-filter: blur(10px);
  background: rgba(11,13,18,.65);
}
.site-header.scrolled{
  border-bottom:1px solid var(--border);
  background: rgba(11,13,18,.82);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand-logo{
  width: 210px;
  height:auto;
  filter: drop-shadow(0 10px 25px rgba(64,196,255,.18));
}
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-links a{
  color: var(--muted);
  font-weight: 500;
}
.nav-links a:hover{ color: var(--text); }
.nav-toggle{ display:none; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 600;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }
.btn-primary{
  border: 1px solid rgba(64,196,255,.35);
  background: linear-gradient(135deg, rgba(64,196,255,.16), rgba(139,92,246,.16));
  box-shadow: 0 14px 40px rgba(64,196,255,.10);
}
.btn-secondary{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.btn-ghost{
  background: transparent;
}

/* Hero */
.hero{
  position:relative;
  padding: 56px 0 40px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 520px at 25% 10%, rgba(64,196,255,.12), transparent 60%),
    radial-gradient(900px 520px at 80% 20%, rgba(139,92,246,.10), transparent 60%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 36px;
  align-items:center;
}
.eyebrow{
  margin:0 0 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing:.02em;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; }

.trust{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.trust-item{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 12px 12px;
}
.trust-kicker{ font-weight:700; margin-bottom:4px; }
.trust-text{ color: var(--muted); font-size: .92rem; }

.hero-card{
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glow-frame{
  padding: 18px;
  background: radial-gradient(700px 340px at 20% 0%, rgba(64,196,255,.16), transparent 55%),
              radial-gradient(700px 340px at 85% 20%, rgba(139,92,246,.14), transparent 55%),
              rgba(0,0,0,.12);
}
.hero-logo{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
}
.hero-card-footer{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding: 14px 16px 16px;
}
.pill{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
}

/* Sections */
.section{
  padding: 58px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  margin-bottom: 18px;
}
.section-head h2{
  margin:0;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
}
.muted{ color: var(--muted); }
.tiny{ font-size: .9rem; }

.grid{
  display:grid;
  gap: 14px;
}
.cards{
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,.03);
  transition: transform .12s ease;
}
.card:hover{ transform: translateY(-2px); }
.card-icon{ font-size: 1.4rem; margin-bottom: 10px; }
.card h3{ margin: 0 0 8px; }
.card p{ margin:0; color: var(--muted); line-height:1.5; }

.note{
  margin-top: 16px;
  border: 1px solid rgba(64,196,255,.22);
  background: linear-gradient(135deg, rgba(64,196,255,.08), rgba(139,92,246,.08));
  border-radius: var(--radius2);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.note-title{ font-weight: 800; }

/* About */
.split{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.checklist{
  list-style:none;
  margin: 18px 0 0;
  padding:0;
  display:grid;
  gap: 10px;
}
.check{
  display:inline-flex;
  width:22px; height:22px;
  align-items:center; justify-content:center;
  border-radius: 999px;
  background: rgba(64,196,255,.12);
  border: 1px solid rgba(64,196,255,.28);
  margin-right:10px;
  color: var(--text);
}

.about-card{
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.about-card-top{
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.badge{
  display:inline-flex;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .02em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  margin-bottom: 10px;
}
.about-card-top h3{ margin: 0 0 6px; }
.about-card-bottom{
  padding: 18px;
  display:grid;
  gap: 12px;
}
.mini-label{ color: var(--muted); font-size: .9rem; }
.mini-value{ font-weight: 700; }
.linklike{
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--text);
  text-align:left;
  cursor:pointer;
  font: inherit;
}
.copy{
  margin-left: 10px;
  font-weight: 700;
  font-size: .82rem;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.10);
  padding: 3px 8px;
  border-radius: 999px;
}

/* Steps */
.steps{
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.step{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,.03);
}
.step-num{
  width:34px; height:34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.28);
  margin-bottom: 12px;
}

/* CTA + Form */
.section-cta{
  padding-top: 64px;
}
.cta{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1fr 1.1fr;
}
.cta-copy{
  padding: 22px;
  background: radial-gradient(900px 520px at 20% 10%, rgba(64,196,255,.10), transparent 60%),
              radial-gradient(900px 520px at 80% 20%, rgba(139,92,246,.09), transparent 60%),
              rgba(0,0,0,.12);
}
.cta-copy h2{ margin: 0 0 6px; }
.cta-details{ margin: 16px 0 0; display:grid; gap: 10px; }
.cta-line{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 10px 12px;
  display:flex;
  justify-content:space-between;
  gap:12px;
}
.cta-label{ color: var(--muted); font-weight: 600; }
.cta-value{ font-weight: 800; }

.form{
  padding: 22px;
  display:grid;
  gap: 12px;
  background: rgba(0,0,0,.08);
}
label span{ display:block; color: var(--muted); font-weight:600; margin: 0 0 6px; }
input, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(64,196,255,.35);
  box-shadow: 0 0 0 4px rgba(64,196,255,.10);
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 4px;
}

/* Footer */
.footer{
  padding: 30px 0 44px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner{
  display:flex;
  gap: 18px;
  align-items:center;
  justify-content:space-between;
}
.footer-logo{
  height: 56px;
  width: auto;
  max-width: 240px;
  border-radius: 0;
  border: 0;
  opacity: .95;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}
.footer-right{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  color: var(--muted);
  font-weight:600;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(10,12,16,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-3px);
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split{ grid-template-columns: 1fr; }
  .cta{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .brand-logo{ width: 170px; }
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px; height:42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    cursor:pointer;
  }
  .burger{
    width:18px; height:2px;
    background: var(--text);
    position:relative;
    border-radius: 99px;
  }
  .burger::before, .burger::after{
    content:"";
    position:absolute;
    left:0;
    width:18px; height:2px;
    background: var(--text);
    border-radius: 99px;
  }
  .burger::before{ top:-6px; }
  .burger::after{ top:6px; }

  .nav-links{
    position:absolute;
    right: 20px;
    top: 70px;
    width: min(320px, calc(100vw - 40px));
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(11,13,18,.96);
    border-radius: 16px;
    padding: 10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
    box-shadow: var(--shadow);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{
    padding: 10px 10px;
    border-radius: 12px;
  }
  .nav-links a.btn{ justify-content:center; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
}


/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.media-card{
  margin:0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.03);
  transition: transform .12s ease, border-color .12s ease;
}
.media-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
}
.media-card-img{
  aspect-ratio: 4 / 3;
  background: rgba(0,0,0,.25);
}
.media-card-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.media-card-cap{
  padding: 14px 16px 16px;
}
.media-card-title{
  font-weight: 800;
  letter-spacing: .2px;
}
.media-card-text{
  margin-top: 6px;
  line-height:1.45;
}
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .media-card-img{ aspect-ratio: 16 / 10; }
}
