/* =====================
   ROOT VARIABLES
===================== */
:root {
  --pink-light: #ffd1dc;
  --pink-main: #f6a5c0;
  --pink-soft: #fff1f4;
  --navy: #1f2a44;
  --navy-dark: #162033;
  --blue-accent: #0b5ed7;
  --white: #ffffff;
  --gray: #555;
  --light-bg: #f8fafc;
}

/* =====================
   GLOBAL RESET
===================== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

/* =====================
   NAVBAR (STICKY)
===================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 16px;
  background: linear-gradient(to right, var(--pink-light), var(--pink-main));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  height: 70px;
  margin-right: 10px;
}

/* Nav Links */
.nav-links a {
  color: var(--navy);
  margin-left: 18px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(31, 42, 68, 0.15);
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  height: 100vh;
  background: url("../images/hero-about1.webp") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  color: var(--white);
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-btn {
  background: var(--navy);
  color: var(--white);
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 6px;
}

/* =====================
   INFO SECTIONS
===================== */
.info-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(to bottom, var(--pink-soft), var(--white));
}

.info-section.alt {
  background: var(--light-bg);
}

.info-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.info-image {
  flex: 1;
}

.info-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.info-content {
  flex: 1;
}

.info-content h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.info-content p {
  margin-bottom: 0.8rem;
  line-height: 1.7;
  color: var(--gray);
}

/* =====================
   CLUBS SECTION
===================== */
.clubs-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--navy), #6675a0);
  text-align: center;
  color: var(--white);
}

.clubs-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.clubs-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}

.club-card {
  background: var(--white);
  padding: 1.8rem 1.3rem;
  border-radius: 14px;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.club-card:hover {
  transform: translateY(-6px);
}

.club-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--pink-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.club-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--navy);
}

.club-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.club-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* =====================
   FOOTER
===================== */
footer {
  background: linear-gradient(to right, var(--pink-main), var(--pink-light));
  color: var(--navy);
  text-align: center;
  padding: 1rem;
  font-weight: bold;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    text-align: center;
  }

  .nav-links a {
    color: var(--white);
    padding: 15px;
    margin: 0;
  }

  .nav-links.show {
    display: flex;
  }
  .hero {
    height: 40vh;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .info-container {
    flex-direction: column;
  }

  .info-image img {
    height: 400px;
  }

  .clubs-section h2 {
    font-size: 1.7rem;
  }
}
