/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #e0001b;
  --white: #ffffff;
  --gold: #ffd700;
  --dark: #1a1a1a;
  --gray: #666;
  --light-gray: #f5f5f5;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(224, 0, 27, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(224, 0, 27, 0.7), rgba(0, 0, 0, 0.5)),
    url("images/hero.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 3rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stadium Section */
.stadium {
  padding: 100px 0;
  background: var(--light-gray);
}

.stadium h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 3rem;
}

.stadium-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stadium-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stadium-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

.stadium-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Titles Section */
.titles {
  padding: 100px 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.titles h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.titles-intro {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.titles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.title-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.title-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.title-name {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Membership Section */
.membership {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.membership h2 {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.membership > p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.membership-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit i {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.benefit p {
  color: var(--gray);
}

/* News Section */
.news {
  padding: 100px 0;
  background: var(--light-gray);
}

.news h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.news > p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

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

.news-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.news-content p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.news-date {
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 600;
}

/* Shop Section */
.shop {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.shop h2 {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.shop > p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product h3 {
  padding: 1rem;
  font-size: 1.1rem;
  color: var(--dark);
}

.price {
  display: block;
  padding: 0 1rem 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--gold);
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--red);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .about-content,
  .stadium-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stadium-content {
    grid-template-columns: 1fr;
  }

  .stadium-image {
    order: -1;
  }

  .stadium-stats {
    justify-content: center;
  }

  .titles-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .membership-benefits {
    grid-template-columns: 1fr;
  }

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

  .shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }

  section {
    padding: 60px 0;
  }

  h2 {
    font-size: 2rem;
  }
}
