@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* ==========================
   COLOR THEME
========================== */
:root {
  --carolina-blue: #4B9CD3;
  --navy: #002F6C;
  --light-blue: #E6F0FA;
  --white: #FFFFFF;
}
/* Recent Teams list - remove bullets, keep color */
.recent-teams {
  list-style: none;    /* removes bullets */
  padding-left: 0;
  margin: 5px 0 10px 0;
}

.recent-teams li {
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--carolina-blue);  /* matches subtitle and "Recent Teams" heading */
}



/* ==========================
   BASE STYLES
========================== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ==========================
   NAVIGATION
========================== */
.navbar {
  background-color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.nav-logo {
  color: var(--white);
  font-size: 1.5em;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--carolina-blue);
}

/* ==========================
   HERO SECTION — BALANCED ALIGNMENT
========================== */
.hero {
  display: flex;
  align-items: flex-start;        /* top-aligned with photos */
  justify-content: space-between;
  gap: 30px;
  padding: 20px 20px 30px 20px;
  background: #e6f0fa;
  flex-wrap: wrap;
  position: relative;
}

/* Main profile image (left) */
.player-photo {
  width: 420px;
  height: 600px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border: 3px solid var(--carolina-blue);
}

/* Text block — centered horizontally */
.hero-text {
  flex: 1;
  max-width: 420px;
  margin: 0 auto;               /* centers horizontally */
  text-align: center;           /* centers text content */
}

/* Right-side stacked photos */
.hero-photos {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;   /* aligns top with text and left photo */
  gap: 10px;
}

/* Two stacked photos */
.extra-photo {
  width: 420px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--carolina-blue);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.hero-text h2 {
  color: var(--carolina-blue); 
  font-weight: 700;             /* bold */
}

.hero-text {
  display: flex;
  flex-direction: column;
  max-width: 600px;     /* keeps text from stretching too far */
}

.hero-text h1 {
  color: var(--navy);
  font-size: 2.3em;
  margin-bottom: 0.2em;
}

.hero-text h3 {
  margin-top: 15px;
  margin-bottom: 5px;
  color: var(--carolina-blue);
}

/* Remove bullets for all lists in hero-text */
.hero-text ul {
  list-style: none;   /* removes bullets */
  padding-left: 0;
  margin: 5px 0 10px 0;
}

.hero-text ul li {
  margin-bottom: 5px;
  font-weight: 500;
  color: #0a1f33;
}

/* ==========================
   RESPONSIVE HERO
========================== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .hero-text ul {
    padding-left: 0;
    list-style-position: inside;
  }
}


/* ==========================
   SECTION STYLES
========================== */
section {
  padding: 30px 60px; /* more space left and right */
  margin: 25px auto;
  max-width: 1000px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

section h3 {
  color: var(--carolina-blue);
  border-bottom: 2px solid #b7d6ee;
  padding-bottom: 6px;
  margin-bottom: 20px;
  font-size: 1.5em;
}

/* ==========================
   VIDEO GRID
========================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
}

.video-item {
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

.video-item iframe,
.video-item video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.video-caption {
  margin-top: 8px;
  font-size: 0.95em;
  color: var(--navy);
}

@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================
   INFO CARDS (References & Contact)
========================== */
.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.info-card {
  flex: 1 1 400px;
  background-color: var(--light-blue);
  border: 1px solid #cce0f2;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  text-align: center;
  color: var(--carolina-blue);
}

/* ==========================
   FOOTER
========================== */
footer {
  background-color: var(--carolina-blue);
  color: var(--white);
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}
