:root {
  --primary: #003049;
  --bg-main: #FDF0D5;
  --accent: #C9A227;

  --text-dark: #0f172a;
  --text-light: #ffffff;
  --muted: #64748b;

  --card-bg: #ffffff;
  --section-bg: #f8f6f0;
  --footer-text: #e2e8f0;
  --footer-muted: #cbd5e1;
  --footer-soft: #94a3b8;
  --footer-border: rgba(255, 255, 255, 0.12);

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.event-highlight {
  background: #f8f6f0;
  border-left: 4px solid #cbb98a;
  padding: 15px;
  margin: 20px 0;
  font-weight: 500;
}


.tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: #cbb98a;
  margin: 10px 0 25px;
  position: relative;
  font-style: italic;
}

.tagline::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #cbb98a;
  position: absolute;
  top: -8px;
  left: 0;
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 2rem;
  color: var(--text-dark);
}

.site-logo {
  width: 70px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 20px;
    background: #f8f6f0;
    padding: 20px;
    border-radius: 12px;
    width: 200px;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    display: flex;
  }

}


.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1000;
  background-color: var(--bg-main);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 20px 40px;
}

body {
  padding-top: 90px;
}

nav.scrolled {
   background-color: rgba(248, 246, 240, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08)
}
nav {
  transition: all 0.3s ease;
}


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--section-bg);
  color: var(--text-dark);
}

.site-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

ul {
  list-style: none;
  padding: 0;
}

nav ul {
  display: flex;
  gap: 20px;
}

a {
  text-decoration: none;
  color: var(--text-dark);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: var(--section-bg);
  
}

nav h1 {
  font-size: 24px;
  color: var(--primary);
}

nav a:hover {
  color: var(--accent);
}

#hero {
  padding: 100px 40px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background:
linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.hero-content {
  max-width: 600px;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background-color: var(--accent);
  color: var(--primary);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: scale(1.05);
}

#about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 40px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  filter: brightness(0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ======================
   Events Section
====================== */

.events-section {
  padding: 100px 8%;
  background: var(--section-bg);
}

.events-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 50px;
}

.events-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.events-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  min-width: 0;
  padding: 10px 5px 20px;
}

.events-track::-webkit-scrollbar {
  height: 8px;
}

.events-track::-webkit-scrollbar-thumb {
  background: #cbb98a;
  border-radius: 20px;
}

.event-card {
  min-width: 320px;
  max-width: 320px;
  background: var(--card-bg);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.event-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.event-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.event-card-content {
  padding: 22px;
}

.event-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.event-date {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.event-description {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 18px;
}

.event-link {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
}

.event-link:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: scale(1.05);
}

.slider-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--text-light);
}

@media (max-width: 768px) {
  .events-section h2 {
    font-size: 2.2rem;
  }

  .event-card {
    min-width: 270px;
    max-width: 270px;
  }

  .slider-btn {
    display: none;
  }
}

/* ======================
   event pages
====================== */

.event-details-page {
  padding: 100px 8%;
  background: var(--section-bg);
}

.event-details-container {
  max-width: 1000px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  transition: 0.3s ease;
}

.back-link:hover {
  color: var(--accent);
}

.event-tag {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.event-details-page h1 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.event-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 35px;
  max-width: 800px;
}

.event-hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  margin-bottom: 35px;
  box-shadow: var(--shadow-soft);
}

.event-info-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--card-bg);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 45px;
}

.info-item h3 {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.info-item p {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
}

.event-description-section {
  margin-bottom: 55px;
}

.event-description-section h2,
.event-gallery-section h2,
.related-events-section h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.event-description-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 18px;
}

.event-gallery-section {
  margin-bottom: 60px;
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.event-gallery-grid img:hover {
  transform: scale(1.03);
}

.related-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.related-event-card {
  display: block;
  background: var(--card-bg);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.related-event-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-event-content {
  padding: 20px;
}

.related-event-content h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.related-event-content p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .event-info-box {
    grid-template-columns: 1fr;
  }

  .event-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-events-grid {
    grid-template-columns: 1fr;
  }

  .event-details-page h1 {
    font-size: 2.3rem;
  }

  .event-hero-image {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .event-details-page {
    padding: 80px 5%;
  }

  .event-gallery-grid {
    grid-template-columns: 1fr;
  }

  .event-details-page h1 {
    font-size: 2rem;
  }

  .event-hero-image {
    height: 260px;
  }
}

/* ======================
   team section
====================== */

.leadership-grid .team-card {
  transform: scale(1.05);
}

.team-section {
  padding: 100px 8%;
  background: var(--section-bg);
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 3.2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.team-group {
  margin-bottom: 60px;
}

.team-group-title {
  text-align: center;
  border-left: none;
  padding-left: 0;
  position: relative;
  color: var(--text-dark);
}

.team-group-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
  justify-content: center;
  gap: 25px;
}

.leadership-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 4px solid rgba(201, 162, 39, 0.25);
}

.team-card h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.linkedin-link {
  display: inline-block;
  text-decoration: none;
  background-color: var(--accent);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 999px;
   font-size: 0.9rem;
  transition: 0.3s ease;
}

.linkedin-link:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: scale(1.05);
}

@media (max-width: 1100px) {
  .team-grid,
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .team-header h2 {
    font-size: 2.5rem;
  }

  .team-grid,
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .team-section {
    padding: 80px 5%;
  }

  .team-header h2 {
    font-size: 2rem;
  }

  .team-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .team-group-title {
    font-size: 1.5rem;
  }
}

/*================
footer
==================*/

.footer {
  background: var(--primary);
  color: var(--footer-text);
  padding: 60px 8% 20px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.footer-col p {
  color: var(--footer-soft);
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--footer-soft);
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--text-light);
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  text-decoration: none;
  color: var(--footer-muted);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  color: var(--footer-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.social-links a.tiktok:hover {
  background: linear-gradient(135deg, #000000, #ff0050);
  color: #ffffff;
}

.social-links a.linkedin:hover {
  background: #0077b5;
}

.social-links a.instagram:hover {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .events-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .container,
  .hero-content,
  .about-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }

  section {
    padding: 60px 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

}

@media (max-width: 768px) {

  .about-content {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
  }

  .about-text,
  .about-image {
    width: 100% !important;
  }

  .about-text p {
    line-height: 1.8;
    font-size: 1rem;
  }

  .about-image img {
    width: 100% !important;
    height: auto;
    margin-top: 20px;
    border-radius: 20px;
  }

}
@media (max-width: 768px) {

  #about {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-image img {
    width: 100%;
    margin-top: 20px;
  }

}