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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  display: flex;
  min-height: 100vh;
}

/* Side Navigation */
.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
  border-right: 1px solid #2a2a2a;
}

.nav-brand h1 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
  line-height: 1.2;
}

.nav-subtitle {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.side-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 60px;
}

.nav-link {
  color: #888;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  transition: all 0.3s ease;
  position: relative;
  text-transform: capitalize;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  padding-left: 24px;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 12px;
}

.nav-social {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  border-radius: 50%;
  color: #888;
  transition: all 0.3s ease;
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
}

.social-icon-link:hover {
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Main Content */
.main-content {
  margin-left: 280px;
  width: calc(100% - 280px);
  min-height: 100vh;
}

/* Hero Section - Split Layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #ffffff;
}

.hero-image-container {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  background: #fafafa;
}

.hero-content {
  max-width: 500px;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.hero-description {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Section Header */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 60px;
  padding: 0 80px;
  padding-top: 100px;
}

.section-number {
  font-size: 14px;
  color: #999;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
}

/* About Section */
.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 80px;
  padding-bottom: 100px;
}

.about-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.about-text h4 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.bio-content {
  margin-bottom: 30px;
}

.bio-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 12px;
}

.bio-content strong {
  color: #1a1a1a;
  font-weight: 600;
}

.bio-titles {
  margin-top: 30px;
}

.bio-titles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bio-titles li {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.bio-titles li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: bold;
}

/* Sponsors Section */
.sponsors-section {
  background: #ffffff;
  padding-bottom: 100px;
}

.sponsors-content-wrapper {
  padding: 0 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.sponsors-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.8;
}

/* Sponsors Carousel with Fade */
.sponsors-carousel-container {
  width: 100%;
  position: relative;
  margin-top: 40px;
  padding: 80px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  min-height: 200px;
  display: flex;
  overflow: visible;
  align-items: center;
  justify-content: center;
}

.sponsors-carousel {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.sponsor-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.sponsor-nav-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  background: #333;
}

.sponsor-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.sponsor-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.sponsor-nav-btn:disabled:hover {
  transform: translateY(-50%);
  background: #1a1a1a;
}

.sponsor-nav-prev {
  left: -60px;
}

.sponsor-nav-next {
  right: -60px;
}

.sponsor-nav-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.sponsor-group {
  position: absolute;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.sponsor-group.active {
  opacity: 1;
  visibility: visible;
}

.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 180px;
  height: 140px;
  padding: 20px 30px;
  transition: transform 0.3s ease;
}

.sponsor-item:hover {
  transform: scale(1.1);
}

.sponsor-item img {
  max-width: 180px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.sponsor-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.sponsor-item h3 {
  font-size: 16px;
  color: #666;
  font-weight: 600;
  text-align: center;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-card {
  background: #fafafa;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #1a1a1a;
}

.stat-value {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.fargo-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-top: 10px;
}

.fargo-note a {
  color: #666;
  text-decoration: none;
}

.fargo-note a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

/* Titles Section */
.titles-section {
  background: #fafafa;
  padding-bottom: 100px;
}

.filter-tabs {
  display: flex;
  gap: 15px;
  padding: 0 80px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  color: #666;
}

.filter-tab:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.filter-tab.active {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.year-section {
  margin-bottom: 20px;
}

.year-section:last-child {
  margin-bottom: 0;
}

.year-heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  padding: 15px 80px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f8f8;
  transition: all 0.2s ease;
}

.year-heading:hover {
  background: #f0f0f0;
  color: #666;
}

.year-heading::-webkit-details-marker {
  display: none;
}

.year-heading::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: #ccc;
  margin-left: auto;
  transition: transform 0.2s ease;
}

details[open] > .year-heading {
  background: #1a1a1a;
  color: #fff;
}

details[open] > .year-heading:hover {
  background: #333;
  color: #fff;
}

details[open] > .year-heading::after {
  content: "−";
  color: #666;
}

.year-highlight {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  color: inherit;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.5px;
  text-transform: none;
}

details[open] > .year-heading .year-highlight {
  opacity: 0.6;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 30px 80px 40px;
}

.achievement-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #1a1a1a;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.achievement-card:hover::before {
  transform: scaleY(1);
}

.achievement-card.hidden {
  display: none;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #1a1a1a;
}

.achievement-year {
  font-size: 14px;
  color: #999;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.achievement-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.achievement-location {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}

.achievement-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.achievement-badge.second {
  background: #666;
}

.achievement-badge.award {
  background: #d4af37;
  color: #1a1a1a;
}

/* Gallery Section */
.gallery-section {
  background: #ffffff;
  padding-bottom: 100px;
}

.gallery-grid-container {
  padding: 0 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid #e5e5e5;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: #1a1a1a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contact Section */
.contact-section {
  background: #fafafa;
  padding-bottom: 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  padding: 0 80px;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.contact-info p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  font-weight: 600;
}

.contact-item a,
.contact-item span {
  font-size: 16px;
  color: #1a1a1a;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #ffffff;
  padding: 50px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Space Grotesk", sans-serif;
  color: #1a1a1a;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Footer */
.main-footer {
  background: #1a1a1a;
  color: #888;
  text-align: center;
  padding: 40px;
  font-size: 14px;
}

.main-footer .built-by {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
}

.main-footer .built-by a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-footer .built-by a:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .side-nav {
    width: 240px;
  }

  .main-content {
    margin-left: 240px;
    width: calc(100% - 240px);
  }

  .section-header,
  .about-grid,
  .filter-tabs,
  .achievements-grid,
  .gallery-grid-container,
  .contact-layout {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 968px) {
  .side-nav {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 80px;
  }

  .side-nav.active {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }

  .mobile-menu-toggle {
    display: flex;
    background: rgba(26, 26, 26, 0.9);
  }

  /* Sponsors - simplified for mobile */
  .sponsors-carousel-container {
    flex-direction: column;
    padding: 40px 20px;
    min-height: auto;
  }

  .sponsors-carousel {
    width: 100%;
  }

  .sponsor-group {
    position: relative;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
    display: none;
  }

  .sponsor-group.active {
    display: flex;
  }

  .sponsor-item {
    min-width: auto;
    height: auto;
    padding: 10px;
  }

  .sponsor-item img {
    max-width: 200px;
    max-height: 100px;
  }

  .sponsor-nav-btn {
    display: none;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-container {
    height: 50vh;
    min-height: 400px;
  }

  .hero-text-container {
    padding: 60px 40px;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-header {
    padding: 60px 30px 0;
  }

  .section-title {
    font-size: 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px 60px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-tabs {
    padding: 0 30px;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    padding: 20px 30px 30px;
  }

  .year-heading {
    padding: 15px 30px;
    font-size: 13px;
  }

  .year-highlight {
    display: none;
  }

  .gallery-grid-container {
    padding: 0 30px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }

  .contact-form {
    padding: 35px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sponsors-content-wrapper {
    padding: 0 30px;
  }

  .sponsor-item {
    font-size: 20px;
  }

  .sponsor-nav-btn {
    width: 40px;
    height: 40px;
  }

  .sponsor-nav-prev {
    left: 10px;
  }

  .sponsor-nav-next {
    right: 10px;
  }

  .sponsor-nav-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

/* Large Screens (1600px+) */
@media (min-width: 1600px) {
  .main-content {
    max-width: calc(1600px + 280px);
  }

  .section-header,
  .about-grid,
  .filter-tabs,
  .achievements-grid,
  .gallery-grid-container,
  .contact-layout {
    padding-left: 100px;
    padding-right: 100px;
  }

  .hero-text-container {
    padding: 100px;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero-title {
    font-size: 80px;
  }

  .hero-description {
    font-size: 20px;
  }

  .section-title {
    font-size: 64px;
  }

  .about-text h3 {
    font-size: 36px;
  }

  .stat-value {
    font-size: 56px;
  }

  .achievements-grid {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
  }

  .contact-info h3 {
    font-size: 42px;
  }
}

/* Extra Large Screens - Ultrawide & TVs (2200px+) */
@media (min-width: 2200px) {
  body {
    background: #111;
  }

  .main-content {
    max-width: 1920px;
    margin-left: 280px;
    margin-right: auto;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.3);
  }

  .side-nav {
    width: 320px;
    padding: 80px 50px;
  }

  .main-content {
    margin-left: 320px;
    max-width: calc(1920px);
  }

  .nav-brand h1 {
    font-size: 36px;
  }

  .nav-link {
    font-size: 18px;
    padding: 14px 0;
  }

  .social-icon-link {
    width: 48px;
    height: 48px;
  }

  .social-icon-link svg {
    width: 24px;
    height: 24px;
  }

  .section-header,
  .about-grid,
  .filter-tabs,
  .achievements-grid,
  .gallery-grid-container,
  .contact-layout {
    padding-left: 120px;
    padding-right: 120px;
  }

  .hero-text-container {
    padding: 120px;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-title {
    font-size: 88px;
  }

  .hero-description {
    font-size: 22px;
  }

  .section-title {
    font-size: 72px;
  }

  .about-text h3 {
    font-size: 40px;
  }

  .bio-content p {
    font-size: 18px;
  }

  .stat-card {
    padding: 50px 40px;
  }

  .stat-value {
    font-size: 64px;
  }

  .stat-label {
    font-size: 16px;
  }

  .year-heading {
    padding: 18px 120px;
    font-size: 15px;
  }

  .achievements-grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
    padding: 40px 120px 50px;
  }

  .achievement-card {
    padding: 45px;
  }

  .achievement-title {
    font-size: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
  }

  .contact-info h3 {
    font-size: 48px;
  }

  .contact-info p {
    font-size: 20px;
  }

  .contact-form {
    padding: 60px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 18px;
    padding: 16px 20px;
  }

  .submit-btn {
    font-size: 18px;
    padding: 18px 36px;
  }

  .main-footer {
    padding: 50px;
    font-size: 16px;
  }
}

/* Massive Screens - 4K TVs (2800px+) */
@media (min-width: 2800px) {
  .main-content {
    max-width: 2200px;
  }

  .hero-title {
    font-size: 96px;
  }

  .section-title {
    font-size: 80px;
  }

  .achievements-grid {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
}
