/* ANDY HO – Sportsinstruktør i Kristiansand, Norge */
/* Moderne, ren og responsiv layout */

:root {
  --bg: #040714;
  --bg-alt: #0b1024;
  --accent: #ff7a3c;
  --accent-soft: rgba(255, 122, 60, 0.16);
  --accent-strong: #ffb36f;
  --text: #f7f7ff;
  --muted: #a1a7cf;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --card-bg: rgba(7, 11, 33, 0.96);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 26px 60px rgba(0, 0, 0, 0.65);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.4);
  --gradient-main: radial-gradient(circle at top left, #ffb36f 0, transparent 52%), radial-gradient(circle at bottom right, #3a8dff 0, transparent 54%), linear-gradient(135deg, #050816 0%, #02010c 100%);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: #02010c;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-image: var(--gradient-main);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

main {
  padding-top: 84px;
}

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

/* Glassy frame around content */
.page-frame {
  position: relative;
  border-radius: 32px;
  padding: 32px 24px 40px;
  background: radial-gradient(circle at top left, rgba(255, 179, 111, 0.2), transparent 50%), radial-gradient(circle at bottom right, rgba(38, 101, 255, 0.32), transparent 55%), linear-gradient(135deg, rgba(9, 12, 38, 0.92), rgba(7, 8, 32, 0.98));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.page-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.12), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.55;
  pointer-events: none;
}

.page-frame-inner {
  position: relative;
  z-index: 1;
}

/* Header / Nav */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(1, 2, 12, 0.88), rgba(1, 2, 12, 0.72), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: conic-gradient(from 200deg, #ffb36f, #ff7a3c, #336dff, #ffb36f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 32px rgba(255, 179, 111, 0.6);
}

.brand-mark span {
  font-size: 18px;
  font-weight: 800;
  color: #050816;
}

.brand-text-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 15px;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.02);
}

.nav-links a.nav-active {
  color: #050816;
  background: linear-gradient(120deg, #ffb36f, #ff7a3c);
  border-color: transparent;
  box-shadow: 0 0 22px rgba(255, 179, 111, 0.7);
}

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-cta a {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 7, 32, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}

.nav-cta a strong {
  color: var(--accent-strong);
}

.nav-cta a:hover {
  background: rgba(9, 13, 46, 1);
}

.hamburger {
  display: none;
}

/* Hero */

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  background: rgba(6, 9, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow-badge {
  background: radial-gradient(circle at 20% 0, #ffb36f, #ff7a3c);
  color: #050816;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(32px, 3.4vw, 40px);
  line-height: 1.08;
  margin: 18px 0 12px;
}

.hero-title span {
  background: linear-gradient(120deg, #ffb36f, #ff7a3c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 30rem;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.pill {
  font-size: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 9, 32, 0.86);
  color: var(--muted);
}

.pill strong {
  color: var(--accent-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out, background 0.14s ease-out, color 0.14s ease-out;
}

.btn-primary {
  background: linear-gradient(130deg, #ffb36f, #ff7a3c);
  color: #050816;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(255, 179, 111, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 44px rgba(255, 179, 111, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  font-size: 12px;
  color: var(--muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #28e88c;
  box-shadow: 0 0 0 6px rgba(40, 232, 140, 0.24);
}

.hero-visual {
  position: relative;
  min-height: 260px;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  transform: rotate(-21deg);
}

.hero-card {
  position: relative;
  margin: 20px auto;
  max-width: 360px;
  border-radius: 30px;
  padding: 22px 20px 18px;
  background: radial-gradient(circle at top left, rgba(255, 179, 111, 0.3), transparent 55%), linear-gradient(145deg, rgba(4, 9, 38, 0.98), rgba(7, 9, 34, 0.98));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.hero-name {
  font-size: 17px;
  font-weight: 600;
}

.hero-tagline {
  font-size: 12px;
  color: var(--muted);
}

.hero-avatar {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 0, #ffb36f, #ff7a3c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050816;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 16px 40px rgba(255, 179, 111, 0.7);
}

.hero-card-body {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stat {
  padding: 10px 10px 8px;
  border-radius: 16px;
  background: rgba(5, 7, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-label {
  font-size: 10px;
  color: var(--muted);
}

.hero-stat-value {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

.hero-badge-floating {
  position: absolute;
  right: -18px;
  bottom: 46px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(5, 9, 36, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-subtle);
  font-size: 11px;
  color: var(--muted);
  max-width: 180px;
}

.hero-badge-floating strong {
  color: var(--accent-strong);
}

.hero-badge-floating::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 179, 111, 0), rgba(255, 179, 111, 0.7));
}

.hero-badge-floating-dot {
  position: absolute;
  left: -10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffb36f;
}

/* Generic sections */

.section {
  margin-top: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.section-title {
  font-size: 20px;
  margin-top: 2px;
}

.section-lede {
  font-size: 13px;
  color: var(--muted);
  max-width: 24rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 18px 16px 16px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.card-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
}

.card-tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.card-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}

.bullet-list {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
}

.bullet-list li {
  margin-bottom: 4px;
  list-style: disc;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill-soft {
  font-size: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

/* Address / info */

.info-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top left, rgba(255, 179, 111, 0.22), transparent 55%), rgba(6, 10, 38, 0.96);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow-subtle);
  font-size: 13px;
  color: var(--muted);
}

.info-panel strong {
  color: var(--accent-strong);
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 6px;
}

.info-item-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(161, 167, 207, 0.8);
}

.info-item-value {
  font-size: 13px;
  margin-top: 2px;
}

/* Pricing */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  padding: 18px 16px 16px;
  border-radius: 22px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.price-title {
  font-size: 16px;
  font-weight: 600;
}

.price-amount {
  font-size: 22px;
  font-weight: 700;
}

.price-amount span {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

.price-desc {
  font-size: 13px;
  color: var(--muted);
}

.price-cta {
  margin-top: 10px;
}

.price-cta .btn {
  width: 100%;
  justify-content: center;
}

.price-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* Timetable */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.schedule-day {
  padding: 14px 13px;
  border-radius: 18px;
  background: rgba(5, 9, 36, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--muted);
}

.schedule-day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.schedule-day-name {
  font-weight: 600;
  color: var(--text);
}

.schedule-slot {
  margin-top: 6px;
}

.schedule-slot-title {
  font-weight: 500;
  color: var(--accent-strong);
}

.schedule-slot-meta {
  font-size: 12px;
}

/* Forms / Kontakt / Booking */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 22px;
}

.form-card {
  padding: 18px 16px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(5, 9, 36, 0.98);
  box-shadow: var(--shadow-subtle);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.form-label {
  font-size: 12px;
  color: var(--muted);
}

.form-label span {
  color: var(--accent-strong);
}

.form-input,
.form-textarea,
.form-select {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 7, 28, 0.95);
  padding: 8px 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(255, 179, 111, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 179, 111, 0.4);
}

.form-hint {
  font-size: 11px;
  color: var(--muted);
}

.form-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.contact-side {
  font-size: 13px;
  color: var(--muted);
}

.contact-side-section {
  margin-bottom: 14px;
}

.contact-side-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(161, 167, 207, 0.86);
  margin-bottom: 4px;
}

.contact-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.contact-chip {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Footer */

.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 26px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(130deg, #ffb36f, #ff7a3c);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

/* Utilities */

.text-center {
  text-align: center;
}

.mt-small {
  margin-top: 6px;
}

.mt-medium {
  margin-top: 16px;
}

.muted {
  color: var(--muted);
}

/* Responsive */

@media (max-width: 840px) {
  .hero-layout,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger-line {
    width: 14px;
    height: 1px;
    background: var(--text);
    position: relative;
  }

  .hamburger-line::before,
  .hamburger-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 14px;
    height: 1px;
    background: var(--text);
  }

  .hamburger-line::before {
    top: -4px;
  }

  .hamburger-line::after {
    top: 4px;
  }

  .page-frame {
    padding: 24px 18px 32px;
  }

  .grid-3,
  .price-grid,
  .schedule-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding-inline: 16px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-card {
    padding: 18px 14px 14px;
  }

  .hero-card-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

