/* ============================================
   Coach Todd Golden — coachtoddgolden.com
   Florida Gators: Orange #FA4616, Blue #0021A5
   ============================================ */

:root {
  --gator-orange: #FA4616;
  --gator-blue: #0021A5;
  --gator-blue-dark: #001878;
  --gator-blue-light: #0033CC;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-600: #868E96;
  --gray-800: #343A40;
  --gray-900: #212529;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--gator-blue-dark) 0%, var(--gator-blue) 40%, var(--gator-blue-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(250, 70, 22, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(250, 70, 22, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Basketball court floor texture overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='2'%3E%3C!-- Court outline --%3E%3Crect x='40' y='40' width='720' height='720' rx='0'/%3E%3C!-- Half court line --%3E%3Cline x1='40' y1='400' x2='760' y2='400'/%3E%3C!-- Center circle --%3E%3Ccircle cx='400' cy='400' r='60'/%3E%3C!-- Top key/paint area --%3E%3Crect x='280' y='40' width='240' height='190'/%3E%3C!-- Top free throw circle --%3E%3Ccircle cx='400' cy='230' r='60'/%3E%3C!-- Top three-point arc --%3E%3Cpath d='M 160 40 L 160 120 Q 160 320 400 320 Q 640 320 640 120 L 640 40'/%3E%3C!-- Bottom key/paint area --%3E%3Crect x='280' y='570' width='240' height='190'/%3E%3C!-- Bottom free throw circle --%3E%3Ccircle cx='400' cy='570' r='60'/%3E%3C!-- Bottom three-point arc --%3E%3Cpath d='M 160 760 L 160 680 Q 160 480 400 480 Q 640 480 640 680 L 640 760'/%3E%3C!-- Backboard lines --%3E%3Cline x1='370' y1='40' x2='430' y2='40'/%3E%3Cline x1='370' y1='760' x2='430' y2='760'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 800px 800px;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
}

.hero-image {
  margin: 0 auto 32px;
  width: 480px;
  max-width: 90%;
}

.hero-image-frame {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(250, 70, 22, 0.6);
  box-shadow: 0 0 60px rgba(250, 70, 22, 0.25), 0 0 120px rgba(0, 0, 0, 0.3);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-image figcaption {
  padding: 8px 0 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
  letter-spacing: 0.5px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gator-orange);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 48px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  min-width: 100px;
}

.stat-number {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--gator-orange);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  line-height: 1.4;
}

/* =====================
   SECTIONS (shared)
   ===================== */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--gator-blue);
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  color: var(--gray-600);
  font-size: 1.1rem;
}

/* =====================
   ACCOMPLISHMENTS
   ===================== */
.accomplishments {
  background: var(--off-white);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, var(--gator-orange), var(--gator-blue));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--gator-orange);
  border: 3px solid var(--off-white);
  border-radius: 50%;
}

.timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gator-orange);
  margin-bottom: 4px;
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gator-blue);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--gray-800);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =====================
   KEY FACTS
   ===================== */
.facts {
  background: var(--white);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.fact-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 33, 165, 0.1);
}

.fact-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.fact-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gator-blue);
  margin-bottom: 12px;
}

.fact-card p {
  font-size: 0.9rem;
  color: var(--gray-800);
  line-height: 1.7;
}

/* =====================
   VIDEOS
   ===================== */
.videos {
  background: var(--gator-blue);
}

.videos .section-title {
  color: var(--white);
}

.videos .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.video-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card h3 {
  padding: 20px 20px 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.video-card p {
  padding: 0 20px 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* =====================
   NEWS
   ===================== */
.news {
  background: var(--off-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.news-card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 33, 165, 0.08);
  border-color: var(--gator-orange);
}

.news-source {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gator-orange);
  margin-bottom: 8px;
}

.news-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gator-blue);
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* =====================
   PITCH
   ===================== */
.pitch {
  background: var(--white);
}

.pitch-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.pitch-box h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gator-blue);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.pitch-intro {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  text-align: left;
  margin-bottom: 40px;
}

.pitch-intro-text {
  flex: 1;
}

.pitch-intro-text .pitch-lead {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--gray-800);
}

.pitch-intro-text p {
  font-size: 1.05rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pitch-intro-media {
  flex-shrink: 0;
  width: 220px;
}

.pitch-intro-media img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
}

.pitch-lead {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--gray-800);
}

.pitch-box > p {
  font-size: 1.05rem;
  color: var(--gray-800);
  margin-bottom: 40px;
  line-height: 1.7;
}

.pitch-video {
  margin-bottom: 40px;
}

.pitch-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
}

.pitch-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pitch-video figcaption {
  padding: 10px 0 0;
  font-size: 0.85rem;
  color: var(--gray-600);
  text-align: center;
  font-style: italic;
}

.pitch-details {
  text-align: left;
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid var(--gray-200);
}

.pitch-details h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gator-blue);
  margin-bottom: 16px;
}

.pitch-details h3:not(:first-child) {
  margin-top: 32px;
}

.pitch-details ul {
  list-style: none;
  padding: 0;
}

.pitch-details li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-800);
}

.pitch-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gator-orange);
  border-radius: 50%;
}

.pitch-details p {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 12px;
}

.pitch-details p:last-child {
  margin-bottom: 0;
}

.work-links a {
  color: var(--gator-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gator-orange);
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.work-links a:hover {
  color: var(--gator-orange);
}

.loom-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  margin-top: 24px;
}

.loom-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pitch-cta {
  background: linear-gradient(135deg, var(--gator-blue-dark), var(--gator-blue));
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.pitch-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.pitch-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gator-orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  background: #e03c10;
  transform: translateY(-2px);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--gray-900);
  padding: 40px 0;
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero-image {
    width: 100%;
    margin-bottom: 24px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat {
    min-width: 80px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .timeline {
    padding-left: 32px;
  }

  .timeline-item::before {
    left: -28px;
  }

  .pitch-intro {
    flex-direction: column;
    text-align: center;
  }

  .pitch-intro-media {
    width: 180px;
    margin: 0 auto;
  }

  .pitch-details {
    padding: 28px;
  }

  .pitch-cta {
    padding: 28px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 16px;
  }

  .stat {
    min-width: 70px;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-link {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
