 /* futur.css */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

header {
    background-color: #0f172a;
    padding: 1em 2em;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5em;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3em;
}

nav a:hover {
    text-decoration: underline;
}

nav a .icon {
    font-size: 1.2em;
}

#logo {
    text-align: center;
    margin: 2em 0;
}

.welcome {
    text-align: center;
    margin: 2em auto;
    max-width: 700px;
}

.welcome h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    color: #0f172a;
}

.slider {
    display: flex;
    gap: 1em;
    overflow-x: auto;
    padding: 2em;
    scroll-snap-type: x mandatory;
}

.slider figure {
    min-width: 300px;
    scroll-snap-align: start;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slider img {
    width: 100%;
    height: auto;
    display: block;
}

.slider figcaption {
    padding: 0.5em;
    text-align: center;
    background: #e2e8f0;
}

footer {
    background-color: #e2e8f0;
    color: #1a1a1a;
    padding: 2em;
    font-size: 0.9em;
    text-align: left;
    border-top: 2px solid #cbd5e1;
    line-height: 1.6;
}

footer a {
    color: #1a1a1a;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .footer-logo {
    float: right;
    max-height: 50px;
    opacity: 0.7;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8em;
    padding-left: 0;
    margin-top: 1em;
  }

  nav a {
    font-size: 1em;
    padding: 0.5em 0;
  }

  header {
    padding: 1em;
  }
}
@media (max-width: 768px) {
  .timeline {
    padding: 2em 1em;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }

  .timeline-text,
  .timeline-image {
    max-width: 100%;
    width: 100%;
    padding: 1em;
    box-sizing: border-box;
  }

  .timeline-text {
    order: 2;
  }

  .timeline-image {
    order: 1;
    margin-bottom: 1em;
  }
}

.activities-section {
  max-width: 1200px;
  margin: 4em auto;
  padding: 0 1em;
}

.activities-section h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.activities-section .intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2em;
  font-size: 1.1em;
  line-height: 1.6;
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
}

.activity {
  background-color: #f1f5f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.activity-header img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.activity-header h3 {
  margin: 0;
  padding: 1em;
  font-size: 1.1em;
  background-color: #e2e8f0;
}

.activity-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1em;
  font-size: 0.95em;
  color: #333;
  line-height: 1.4;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.activity.open .activity-body {
  max-height: 300px;
  padding: 1em;
}
