@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* Complete redesign with modern CSS variables and typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --navy: #1e2d5f;
  --navy-light: #2a3f7a;
  --navy-dark: #0f1733;
  --yellow: #ffd700;
  --yellow-light: #ffe44d;
  --yellow-dark: #ccac00;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Semantic */
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--yellow);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--navy);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
}

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

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--navy);
  transition: all 0.3s ease;
}

/* Modern Hero */
.hero-modern {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--yellow) 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-content-modern {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
}

.hero-label {
  display: inline-block;
  background-color: rgba(255, 215, 0, 0.2);
  color: var(--yellow);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title-modern {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modern Buttons */
.btn-modern {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary-modern {
  background-color: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.btn-primary-modern:hover {
  background-color: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-modern {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-large-modern {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

/* Bento Grid Section */
.bento-section {
  padding: 120px 24px;
  background-color: var(--off-white);
}

.section-header-modern {
  text-align: center;
  margin-bottom: 80px;
}

.section-title-modern {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.bento-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.bento-large {
  grid-column: span 7;
}

.bento-medium {
  grid-column: span 5;
}

.bento-tall {
  grid-column: span 5;
  grid-row: span 2;
}

.bento-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.bento-highlight h3,
.bento-highlight p {
  color: var(--white);
}

.bento-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.bento-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.bento-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bento-list {
  list-style: none;
  margin: 24px 0;
}

.bento-list li {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  position: relative;
  padding-left: 28px;
}

.bento-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: bold;
}

.link-arrow {
  display: inline-block;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.link-arrow:hover {
  transform: translateX(4px);
  color: var(--navy-light);
}

/* Countdown Mini */
.countdown-mini {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  justify-content: center;
}

.countdown-mini-item {
  background-color: rgba(255, 215, 0, 0.2);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
}

/* CTA Section */
.cta-section {
  padding: 120px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-content-modern h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-content-modern p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* News Section */
.news-section {
  padding: 120px 24px;
  background-color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.news-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.news-image {
  height: 250px;
  overflow: hidden;
  background-color: var(--gray-100);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 32px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.news-badge {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.news-date {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.news-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.news-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-link {
  display: inline-block;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.news-link:hover {
  transform: translateX(4px);
  color: var(--navy-light);
}

/* Location Section */
.location-section {
  padding: 120px 24px;
  background-color: var(--off-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.map-wrapper {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.location-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.location-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.location-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.location-card a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-card a:hover {
  color: var(--navy-light);
  text-decoration: underline;
}

/* Footer */
.footer-modern {
  background-color: var(--navy);
  color: var(--white);
  padding: 80px 24px 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-modern {
  width: 80px;
  height: auto;
}

.footer-tagline {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link-modern {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.social-link-modern:hover {
  color: var(--yellow-light);
}

.footer-links-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column-modern h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column-modern ul {
  list-style: none;
}

.footer-column-modern li {
  margin-bottom: 12px;
}

.footer-column-modern a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-column-modern a:hover {
  color: var(--white);
}

.footer-bottom-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.8;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-modern a {
  color: var(--yellow);
  text-decoration: none;
}

.footer-bottom-modern a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bento-large,
  .bento-medium,
  .bento-tall {
    grid-column: span 12;
    grid-row: span 1;
  }

  .cta-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 40px 0;
    gap: 24px;
  }

  .menu-toggle:checked ~ .nav-menu {
    left: 0;
  }

  .hero-stats {
    gap: 40px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

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

  .footer-links-modern {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-modern {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-modern {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 32px;
  }
}
