/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
  color: #102026;
  background: #f7f9fa;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

/* === GLOBAL COLORS === */
:root {
  --accent: #0fa27a;
  --accent-dark: #06755a;
  --bg-dark: #0d1b2a;
  --bg-light: #ffffff;
  --text-dark: #111;
  --text-light: #f3f6f7;
  --shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px; /* fixed navbar height */
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  z-index: 1000;
}


.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav right */
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: auto;
  position: relative; /* no need for absolute logo now */
}
/* LOGO */
.logo {
  position: relative; /* back to normal flow */
  display: flex;
  align-items: center;
}

/* LOGO IMAGE */
.logo-image {
  height: 90px; /* adjust as needed */
  width: auto;
}

.nav a {
  margin: 0 0.8rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav a:hover {
  color: var(--accent)
}

.btn.small {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px
}

/* === HERO === */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/baseball-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800
}

.tagline {
  font-size: 1.2rem;
  color: #aaf3e4;
  margin-bottom: 1rem
}

.desc {
  margin-bottom: 2rem;
  font-size: 1rem;
  opacity: 0.95
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s
}

.btn:hover {
  background: var(--accent-dark)
}

/* === SECTIONS === */
.section {
  padding: 6rem 2rem;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative
}

.section.light {
  background: #f8fbfb;
  color: #111
}

.section.dark {
  background: var(--bg-dark);
  color: var(--text-light)
}

.section.gradient {
  background: linear-gradient(135deg, #0fa27a 0%, #0c7385 100%);
  color: #fff
}

/* === GRID & CARDS === */
.container {
  max-width: 1100px;
  margin: auto
}

.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}

.grid.four {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr))
}

.card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card h3 {
  margin-bottom: 0.6rem;
  color: var(--accent-dark)
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12)
}

.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.bright {
  background: #fff;
  color: #111
}

.link {
  color: inherit;
  text-decoration: none;
  border-left: 4px solid var(--accent)
}

.link:hover {
  background: rgba(255, 255, 255, 0.1)
}

.about-video {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.about-video iframe {
  width: 100%;
  max-width: 700px; /* or whatever size you want */
  height: 400px;
  border-radius: 12px;
}


/* === PARTNERS === */
.partner-list {
  list-style: none;
  max-width: 700px;
  margin: 1.5rem auto;
  text-align: left
}

.partner-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15)
}



#contact .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === FOOTER === */
.footer {
  background: #0a1523;
  color: #eee;
  text-align: center;
  padding: 2rem 1rem;
}

.footer .container {
  max-width: 800px;
  margin: auto;
}
.social-media {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1rem 0;
}

.social-media a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-media a:hover img {
  transform: scale(1.2);
}


.emblem {
  width: 500px;
  margin: 0 auto 1rem;
}

.copy {
  margin-top: 1rem;
  color: #aaa;
  font-size: 0.9rem
}

.eu p {
  font-size: 0.85rem;
  opacity: 0.8;
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* Optional: Close “X” button inside nav */
.close-btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--accent-dark);
  cursor: pointer;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
 .nav {
    position: fixed;
    top: 0;             /* start at very top */
    right: -100%;       /* hidden by default */
    width: 230px;
    height: 100vh;      /* full viewport height */
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem;
    gap: 1rem;
    box-shadow: -4px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav a {
    width: 100%;
    padding: 0.8rem 1rem;
    text-align: left;
    border: none;
  }

  .nav.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}