:root {
  --nav-gap: 1.76rem;
  --font-title-1: clamp(1.6rem, 2.4vw, 2rem);
  --font-2ndary: clamp(0.96rem, 1.6vw, 1.2rem);
  --font-body: clamp(0.8rem, 1.2vw, 0.96rem);
  --font-title-large: clamp(1.76rem, 4vw, 3.2rem);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* Header  */
.header {
  background: #fff;
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-content {
  display: flex;
  align-items: center;
  height: 8vh;
  width: 100%;
}

.logo-left {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo {
  height: 64px;
  max-width: 2400px;
  width: auto;
  padding-top: 0;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
  transition: all 0.3s;
}

.nav-link {
  text-decoration: none;
  color: #1e293b;
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 12px;
  padding: .48rem 2rem;
  justify-content: center;
  background: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.nav-link.get-involved {
  background: linear-gradient(120deg, #189dac 0%, #43c6db 100%);
  color: #fff;
  border: 2px solid rgba(24,157,172,0.3);
}

.nav-link:hover {
  color: #189dac;
  background: rgba(24,157,172,0.1);
  transform: translateY(-2px);
}

.nav-link.get-involved:hover {
  color: #fff;
  background: linear-gradient(120deg, #43c6db 0%, #189dac 100%);
  border: 2px solid #43c6db;
}

/* Dropdown  */
.nav-item.dropdown {
  position: relative;
}

.dropdown-arrow {
  margin-left: 0.6em;
  font-size: .8em;
}

.nav-item.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 100%;
  box-shadow: 0 8px 24px rgba(24,157,172,0.10);
  border-radius: 0 0 12px 12px;
  z-index: 1001;
  list-style: none;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #189dac;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  background: none;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.dropdown-link:hover {
  background: rgba(24,157,172,0.08);
  color: #12707c;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 8px;
  padding: 0.75rem;
  border-radius: 12px;
  transition: all 0.3s;
  background: none;
  border: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}

.mobile-menu-toggle span {
  width: 36px;
  height: 5px;
  background: #1e293b;
  border-radius: 3px;
  transition: all 0.3s;
  display: block;
  transform-origin: left center;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #155e75 0%, #38bdf8 100%);
  
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/iStock-679543408.jpg') center/cover;
  opacity: .8;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-size: var(--font-title-large);
  font-weight: 700;
  margin-bottom: 0.8rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.36rem;
  margin-bottom: 2.4rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-gradient-box {
  background: linear-gradient(110deg,  #1294a8 1%, #43c6db 66%, #a2ebf7 100%);
  border-top-right-radius: 32px;
  border-bottom-right-radius: 48px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: 0 8px 32px rgba(24,157,172,0.10);
  color: #fff;
  max-width: 680px;
  width: 72vw;
  text-align: left;
  margin: 5.6rem auto 1.6rem auto;
  position: relative;
  padding: clamp(0.96rem, 2.4vw, 1.76rem) clamp(0.8rem, 3.2vw, 2rem) clamp(0.96rem, 2.4vw, 1.76rem) clamp(0.8rem, 2.4vw, 2rem);
  left: -17rem;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.04rem;
}

.btn-primary {
  
  background: linear-gradient(110deg,  #1294a8 1%, #43c6db 66%, #8de4f1 100%);
  color: white;
}

.btn-primary:hover {
  
  background: linear-gradient(-110deg,  #1294a8 1%, #43c6db 66%, #8de4f1 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(24,157,172,0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.section-title {
  font-size: var(--font-title-1);
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1e293b;
}

.section-subtitle {
  font-size: var(--font-body);
  color: #64748b;
  max-width: 480px;
  margin: 0 auto;
}

/* About  */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about-card {
  background: white;
  padding: 1.6rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.about-card:hover {
  transform: scale(1.05);
}

.card-icon {
  width: 64px;
  height: 64px;
  
  background: linear-gradient(110deg,  #1294a8 1%, #43c6db 66%, #a2ebf7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: white;
  font-size: calc(var(--font-title-1) * 0.8);
}

.about-card h3 {
  font-size: var(--font-2ndary);
  margin-bottom: 0.8rem;
  color: #1e293b;
}

.about-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: var(--font-body);
}

/* Media  */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.media-tile {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
  height: 320px;
}

.media-tile:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.media-image {
  position: relative;
  flex: 1;
  overflow: hidden;
}

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

.media-tile:hover .media-image img {
  transform: scale(1.05);
}

.media-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(110deg,  #1294a8 1%, #43c6db 66%, #8de4f1 100%);
  color: white;
  padding: 1.2rem;
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.3s ease;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-tile:hover .media-banner {
  transform: translateY(0);
}

.media-banner h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.media-banner p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Events  */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.event-tile {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}

.event-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(24, 157, 172, 0.15);
  border-color: #189dac;
}

.event-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.event-tile:hover .event-image img {
  transform: scale(1.05);
}

.event-content {
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.event-content h3 {
  color: #189dac;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.event-content p {
  color: #495057;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  font-weight: 400;
}

.event-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(24, 157, 172, 0.9);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* Collaborate */
.collaborate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header h3 {
  font-size: var(--font-title-1);
}

.collaborate-text h3 {
  font-size: var(--font-2ndary);
  margin-bottom: 1rem;
  color: #1e293b;
}

.collaborate-list {
  list-style: none;
  margin-bottom: 2rem;
}

.collaborate-list li {
  padding: 0.5rem 0;
  color: #64748b;
  position: relative;
  padding-left: 2rem;
  font-size: var(--font-body);
}

.collaborate-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #189dac;
  font-weight: bold;
}

.collaborate-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  
  background: linear-gradient(110deg,  #1294a8 1%, #43c6db 66%, #a2ebf7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: calc(var(--font-body) * 0.8);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: var(--font-2ndary);
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.contact-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: var(--font-body);
}

.contact-form {
  background: white;
  padding: 1.6rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: var(--font-body);
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

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

.hidden {
  display: none;
}


/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 2.4rem 0 0.8rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #f1f5f9;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.28;
}

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

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

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f1f5f9;
}

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

.social-links a {
  width: 32px;
  height: 32px;
  background: #334155;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1rem;
  text-align: center;
  color: #94a3b8;
}

.partner-logos {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}

.partner-logo {
  height: 80px;
  width: auto;
  max-width: 208px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  background: white;
  padding: 6px;
  border-radius: 6px;
}

.partner-logo:hover {
  opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1900px) {
  :root {
    --nav-gap: 1.5rem;
  }
  .container {
    max-width: 1400px;
    padding: 0 24px;
  }
  .logo {
    max-width: 150px;
    height: 50px;
  }
  .nav-link, .dropdown-link {
    font-size: 1.1rem;
    padding: 0.7rem 1.1rem;
  }
  .hero-gradient-box {
    max-width: 600px;
    width: 85vw;
    left: 0;
    margin: 6rem auto 2rem auto;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(0.8rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem) clamp(0.8rem, 2vw, 2rem);
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .hero-buttons {
    gap: 2rem;
  }
  .btn {
    padding: 10px 22px;
    font-size: 1.05rem;
  }
  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 1700px) and (min-width: 1201px) {
  .hero-gradient-box {
    max-width: 700px;
    width: 75vw;
    left: 0;
  }
  .hero-title {
    font-size: clamp(1.7rem, 3vw, 3.5rem);
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
  .hero-buttons {
    gap: 1.5rem;
  }
  .btn {
    padding: 10px 22px;
    font-size: 1rem;
  }
  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 1440px) and (min-width: 1201px) {
  .container {
    max-width: 1200px;
    padding: 0 20px;
  }
 
    .nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 1.7rem;
  }
  .dropdown-link {
    font-size: 0.85rem;
    padding: 0.8rem 1.2rem;
  }
  .hero-gradient-box {
    max-width: 600px;
    width: 70vw;
    left: -15rem;
    margin: 5rem auto 2rem auto;
  }
  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }
  .media-tile {
    height: 300px;
  }
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
  }
  .collaborate-content {
    gap: 2rem;
  }
  .collaborate-image img {
    height: 280px;
  }
}

@media (max-width: 1199px) {
  :root {
    --nav-gap: 1rem;
  }
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  .logo {
    max-width: 110px;
    height: 40px;
  }
  .nav-link, .dropdown-link {
    font-size: 1rem;
    padding: 0.6rem 0.8rem;
  }
  .hero-gradient-box {
    max-width: 500px;
    width: 95vw;
    left: 0;
    margin: 4rem auto 2rem auto;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(0.6rem, 2vw, 1.2rem) clamp(0.8rem, 2vw, 1.2rem) clamp(0.6rem, 2vw, 1.2rem);
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  .hero-buttons {
    gap: 1.2rem;
  }
  .btn {
    padding: 8px 18px;
    font-size: 0.95rem;
  }
  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1000px;
  }
  .media-image {
    height: 250px;
  }
  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero-gradient-box {
    max-width: 600px;
    width: 95vw;
    left: 0;
    margin: 6rem auto 2rem auto;
    padding: clamp(0.7rem, 2.5vw, 1.8rem) clamp(0.5rem, 3vw, 2.5rem) clamp(0.7rem, 2.5vw, 1.8rem) clamp(0.5rem, 2.5vw, 1.8rem);
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    gap: 1.5rem;
  }
  
  .btn {
    padding: 8px 20px;
    font-size: 1rem;
  }
  
  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .media-banner {
    padding: 1rem;
  }
  
  .media-banner h3 {
    font-size: 1.3rem;
  }
  
  .media-banner p {
    font-size: 0.9rem;
  }
}

@media (max-width: 780px) {
  .header-content {
    flex-wrap: wrap;
    min-height: unset;
    position: relative;
  }
  .nav {
    width: 100%;
    justify-content: flex-end;
    display: none;
  }
  .nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideDown 0.3s ease;
    z-index: 1001;
  }
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .nav.active .nav-link {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.05);
    transition: all 0.3s ease;
  }
  .nav.active .nav-link.get-involved {
    background: linear-gradient(120deg, #1294a8 0%, #43c6db 100%) !important;
    color: #fff !important;
    border: 2px solid rgba(18,148,168,0.3);
    box-shadow: none;
  }
  .nav.active .nav-link.get-involved:hover {
    background: linear-gradient(120deg, #0f7a8a 0%, #189dac 100%) !important;
    color: #fff !important;
    border: 2px solid #0f7a8a;
  }
  .nav.active .nav-link:hover {
    background: rgba(37, 99, 235, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .logo {
    max-width: 100px;
    height: 36px;
  }
  .nav-link, .dropdown-link {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
  }
  
  .hero-gradient-box {
    max-width: 95vw;
    width: 95vw;
    left: 0;
    margin: 4rem auto 2rem auto;
    padding: clamp(0.6rem, 2vw, 1.5rem) clamp(0.4rem, 2.5vw, 2rem) clamp(0.6rem, 2vw, 1.5rem) clamp(0.4rem, 2vw, 1.5rem);
    border-radius: 16px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 1rem;
    width: 200px;
    text-align: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .media-tile {
    height: 280px;
  }
  
  .collaborate-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .collaborate-text {
    order: 1;
  }
  
  .collaborate-image {
    order: 2;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    order: 1;
  }
  
  .contact-form {
    order: 2;
  }
  
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .event-image {
    height: 180px;
  }
  
  .event-content {
    padding: 1.2rem;
  }
  
  .event-content h3 {
    font-size: 1.2rem;
  }
  
  .event-content p {
    font-size: 0.9rem;
  }
  
  .media-banner {
    padding: 0.8rem;
  }
  
  .media-banner h3 {
    font-size: 1.2rem;
  }
  
  .media-banner p {
    font-size: 0.85rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .partner-logos {
    gap: 1rem;
  }
  
  .partner-logo {
    height: 55px;
    max-width: 150px;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    min-height: 100vh;
  }
  
  .hero-background {
    background: url('../assets/mobile-bg.PNG') center/cover no-repeat;
    opacity: .8;
  }
  
  .hero-gradient-box {
    width: 90vw;
    margin: 25rem auto 1.5rem auto;
    padding: clamp(0.5rem, 1.5vw, 1.2rem) clamp(0.3rem, 2vw, 1.5rem) clamp(0.5rem, 1.5vw, 1.2rem) clamp(0.3rem, 1.5vw, 1.2rem);
    border-radius: 12px;
    text-align: center;
    
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    width: 180px;
  }
  
  .about-grid {
    gap: 1.5rem;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .media-tile {
    height: 240px;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .collaborate-content {
    gap: 1.5rem;
  }
  
  .contact-content {
    gap: 1.5rem;
  }
  
  .media-banner {
    padding: 0.6rem;
  }
  
  .media-banner h3 {
    font-size: 1.1rem;
  }
  
  .media-banner p {
    font-size: 0.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .partner-logos {
    gap: 0.8rem;
  }
  
  .partner-logo {
    height: 50px;
    max-width: 130px;
    padding: 4px;
  }
} 