/* =====================================================
   styles.css - rolltide.ucanfindit.net
   ===================================================== */

:root {
  --crimson: #9E1B32;
  --crimson-dark: #7A1527;
  --crimson-light: #C41E3A;
  --houndstooth-dark: #1a1a1a;
  --white: #FFFFFF;
  --gray: #f5f5f5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--gray);
  color: #222;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Houndstooth pattern */
.houndstooth {
  background-color: #000;
  background-image:
    linear-gradient(135deg, #fff 25%, transparent 25%),
    linear-gradient(225deg, #fff 25%, transparent 25%),
    linear-gradient(315deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, #fff 25%, transparent 25%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 0, 10px -10px, 0 10px;
}

/* ============ HEADER ============ */
.top-bar {
  background: #000;
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 0;
  text-align: center;
  letter-spacing: 2px;
}

header {
  background: var(--crimson);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: white;
  color: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--crimson), 0 0 0 4px white;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 4px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

nav a:hover {
  border-bottom-color: white;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  background:
    linear-gradient(135deg, rgba(158,27,50,0.85), rgba(0,0,0,0.8)),
    url('https://images.unsplash.com/photo-1566577739112-5180d4bf9390?w=1600') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
}

.hero-content {
  z-index: 2;
  padding: 20px;
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}

.hero .tagline {
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 4px;
  margin-bottom: 30px;
  opacity: 0.95;
  font-family: 'Oswald', sans-serif;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: white;
  color: var(--crimson);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 3px solid white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  margin-left: 10px;
}

.btn-outline:hover {
  background: white;
  color: var(--crimson);
}

/* ============ MAIN CONTENT ============ */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--crimson);
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--crimson);
  margin: 15px auto 0;
}

/* Stats Strip */
.stats-strip {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: white;
  padding: 60px 20px;
  margin: 0 -20px 80px;
}

.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 5px;
}

.stat-item p {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Schedule */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.game-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--crimson);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(158,27,50,0.2);
}

.game-header {
  background: #000;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

.game-status {
  background: var(--crimson);
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 3px;
}

.game-body {
  padding: 25px 20px;
  text-align: center;
}

.matchup {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--crimson);
}

.game-info {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
}

.score {
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  color: var(--crimson);
  font-weight: 700;
  margin: 10px 0;
}

.win-tag {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 700;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.news-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.news-img {
  height: 200px;
  background: linear-gradient(135deg, var(--crimson), #000);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.news-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent);
}

.news-content {
  padding: 25px;
}

.news-date {
  color: var(--crimson);
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
}

.news-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.news-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

.read-more:hover {
  color: var(--crimson-dark);
}

/* ============ FOOTER ============ */
footer {
  background: #000;
  color: white;
  padding: 60px 20px 20px;
}

.footer-houndstooth {
  height: 10px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--crimson);
  margin-bottom: 20px;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--crimson);
  padding-bottom: 8px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--crimson-light);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  transition: all 0.3s;
}

.social-links a:hover {
  background: white;
  color: var(--crimson);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #333;
  color: #888;
  font-size: 0.9rem;
}

.copyright span {
  color: var(--crimson-light);
  font-weight: 700;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav ul {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--crimson-dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  nav ul.active { transform: translateY(0); }
  .hero { height: 70vh; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
  main { padding: 50px 20px; }
}
