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

html {
  scroll-behavior: smooth;
}


body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

img {
  max-width: 100%;
 
  display: block;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout components */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-wrapper {
  width: 100%;
}

.content-container {
  width: 100%;
  max-width: 1236px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  margin-top: 14px;
}

.logo {
  width: 102px;
  height: 100px;
}

.nav-menu {
  display: flex;
  gap: 44px;
  align-items: center;
}

.nav-item {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 22px;
  color: #4c4c4c;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #2563eb;
}

.hamburger {
  display: block;
  padding: 8px;
  background: none;
  border: none;
  font-size: 24px;
  color: #4c4c4c;
}

/* Hero Section */
.hero-section {
  background-color: #f8f8fc;
  padding: 34px 16px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  /* gap: 32px; */
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}

.hero-title {
  font-size: 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  text-transform: capitalize;
  color: #111827;
}

.hero-description {
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  line-height: 1.55;
  color: #4b5572;
}


.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* ~8px */
  padding: 1rem 1.5rem; /* ~16px 24px */
  background: linear-gradient(90deg, #ab54f2 0%, #e8499e 100%);
  color: #ffffff;
  font-size: clamp(0.9rem, 2vw, 1rem); /* scales with screen */
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1.6;
  text-transform: capitalize;
  border-radius: 0.75rem; /* ~12px */
  transition: transform 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-button img {
  width: 1.5rem; /* ~24px */
  height: 1.5rem;
}

.hero-image {
  width: 50%;
  border-radius: 8px;
}

.hero-image-phone {
  width: 100%;
  border-radius: 8px;
}

/* Our Story Section */
.story-section {
  padding: 60px 16px;
  margin-top: 60px;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-title {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 37px;
  color: #000000;
}

.story-description {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 25px;
  color: #7e7e7e;
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 20px 16px;
  background-color: #f9fafb;
  border-radius: 10px;
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 48px;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.team-info > div {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-name {
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 28px;
  color: #111827;
}

.team-role {
  font-size: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 20px;
  color: #4b0082;
}

.team-description {
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 17px;
  color: #7e7e7e;
  text-align: center;
}

.team-social {
  width: 24px;
  height: 24px;
}

/* Events Section */
.events-section {
  background-color: #f7f7f7f9;
  padding: 60px 16px;
  margin-top: 60px;
  display: none; /* Hidden - no content yet */
}

.events-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.events-title {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 37px;
  color: #000000;
}

.events-description {
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  line-height: 25px;
  color: #7e7e7e;
}

.events-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.carousel-arrow {
  width: 54px;
  height: 54px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.events-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  
}

.events-list::-webkit-scrollbar {
    height: 0;
    width: 0;
}


.event-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.event-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-category {
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 15px;
  color: #333333;
}

.event-date {
  font-size: 11px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 14px;
  color: #999999;
}

.event-title {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 25px;
  color: #333333;
}

.event-excerpt {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 22px;
  color: #7e7e7e;
}

.event-link {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.event-link-text {
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 16px;
  color: #7e7e7e;
}

.event-link-arrow {
  width: 20px;
  height: 20px;
}


/* Trail Moments Section */
.moments-section {
  padding: 60px 16px;
  margin-top: 60px;
}

.moments-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.moments-title {
  font-size: 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 41px;
  color: #000000;
}

.moments-description {
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  line-height: 25px;
  color: #7e7e7e;
}

.moments-gallery {
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: center;
  position: relative;
}

.main-image {
  width: 100%;
  border-radius: 20px;
  height: 600px;
  object-fit: cover;
  object-position: center 40%;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.main-image.fading {
  opacity: 0.3;
  transform: scale(0.98);
}

.main-image:hover {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.thumbnail-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 10px 0;
}

.thumbnail-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding: 5px 0;
}

.thumbnail-row::-webkit-scrollbar {
  display: none;
}

.thumbnail-row {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.thumbnail {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: #667eea;
}

.carousel-arrow {
  flex: 0 0 auto;
  z-index: 10;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.carousel-arrow:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

.carousel-arrow img {
  filter: brightness(0) invert(1);
  width: 28px;
  height: 28px;
  transition: all 0.2s ease;
}


.thumbnail.selected {
  border: 4px solid #667eea;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
  transform: scale(1.05);
}

.indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  transition: all 0.3s ease;
  cursor: pointer;
}

.indicator:hover {
  background: #9ca3af;
  transform: scale(1.2);
}

.indicator.active {
  width: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

/* Slideshow progress bar */
.slideshow-progress {
  width: 100%;
  height: 6px;
  background: rgba(229, 231, 235, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 25px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slideshow-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  transition: width 0.1s linear;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

/* Instagram Section */
.instagram-section {
  background-color: #f7f7f7;
  padding: 72px 16px;
  margin-top: 60px;
  scroll-margin-top: 140px;
}

.instagram-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.instagram-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.instagram-title {
  font-size: 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 69px;
  color: #3c3c3c;
}

.instagram-logo {
  width: 280px;
  height: auto;
  object-fit: contain;
}

.instagram-description {
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 31px;
  color: #7e7e7e;
  text-align: center;
}

.instagram-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(90deg, #be0452 0%, #e41801 50%, #e7aa00 100%);
  color: #ffffff;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 32px;
  text-transform: capitalize;
  border-radius: 12px;
  box-shadow: 0 4px 38px #0000003f;
  transition: transform 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.instagram-button:hover {
  transform: scale(1.05);
}

.instagram-button img {
  width: 38px;
  height: 38px;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(180deg, #fbf9fc 0%, #d0bdde 100%);
  padding: 100px 16px;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.newsletter-header {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  text-align: center;
}

.newsletter-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.newsletter-title-line {
  font-size: 28px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 48px;
  color: #000000;
}

.newsletter-description {
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 31px;
  color: #7e7e7e;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 600px;
  background-color: #ffffff;
  border-radius: 36px;
  padding: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 28px;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  line-height: 35px;
  color: #7e7e7e;
  border: none;
  background: transparent;
  outline: none;
}

.newsletter-button {
  padding: 8px 34px;
  background-color: #4b0082;
  color: #ffffff;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 35px;
  border-radius: 28px;
  transition: background-color 0.3s ease;
}

.newsletter-button:hover {
  background-color: #3d006a;
}

/* Footer */
.footer {
  background-color: #f8f8fc;
  padding: 48px 16px 4px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.footer-logo {
  width: 138px;
  height: 136px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  align-items: center;
}

.footer-nav-item {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 20px;
  color: #070707b2;
  transition: color 0.3s ease;
}

.footer-nav-item:hover {
  color: #2563eb;
}

.footer-bottom {
  width: 100%;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #6a6a6a49;
  margin-bottom: 16px;
}

.footer-copyright {
  background-color: #f8f8fc;
  padding: 14px;
  text-align: center;
}

.copyright-text {
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 15px;
  color: #232323;
}

/* Interactive states */
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.thumbnail:hover {
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.carousel-arrow.disabled {
  cursor: not-allowed;  
  opacity: 0.4;         
  pointer-events: none;
}

/* Responsive media queries */

@media (min-width: 1024px) {
  .thumbnail-row {
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
  }

  .thumbnail {
    flex: 0 0 calc((100% - 4 * 20px) / 5);
    height: auto;
  }
}

@media (max-width: 1024px) {
  .thumbnail-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .thumbnail {
    width: calc(50% - 10px);
    min-width: calc(24% - 10px);
  }

  .carousel-arrow {
    display: flex;
  }

   .event-card {
    width: 49%;
  }
  
  .events-list{
    gap: 10px;
  }
}

@media (max-width: 912px){
     .thumbnail {
    width: calc(50% - 10px);
    min-width: calc(32% - 10px);
  }

  .main-image{
    height: 500px;
    object-fit: cover;
    object-position: center 40%;
  }
}


@media (max-width: 600px) {
  .cta-button {
    margin: 0 auto;
    display: flex;
  }
  .story-content {
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
  }
}
@media (min-width: 360px) {
  .hero-image {
    width: 100%;
  }

  .hero-content {
    flex-direction: column-reverse;
    align-items: center;
  }

  .hero-description {
    text-align: center;
  }

  .hero-title {
    text-align: center;
  }

  .instagram-section {
    padding: 40px 16px;
  }
}

@media (min-width: 640px) {
  .hero-image {
    width: 75%;
  }

  .container {
    padding: 0 24px;
  }

  .content-container {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 42px;
    text-align: left;
  }

  .hero-description {
    font-size: 18px;
    text-align: left;
  }

  .cta-button {
    font-size: 18px;
    padding: 16px 34px;
  }

  .story-title {
    font-size: 28px;
  }

  .story-description {
    font-size: 18px;
  }

  .team-cards {
    flex-direction: row;
    gap: 20px;
  }

  .team-card {
    flex: 1;
  }

  .team-name {
    font-size: 20px;
  }

  .team-role {
    font-size: 14px;
  }

  .team-description {
    font-size: 13px;
  }

  .events-title {
    font-size: 28px;
  }

  .events-description {
    font-size: 18px;
  }

  .moments-title {
    font-size: 28px;
  }

  .moments-description {
    font-size: 18px;
  }

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

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

  .newsletter-title-line {
    font-size: 32px;
  }

  .newsletter-description {
    font-size: 18px;
  }

  .newsletter-form {
    flex-direction: row;
    align-items: center;
  }

  .newsletter-input {
    font-size: 22px;
  }

  .newsletter-button {
    font-size: 22px;
  }
}

@media (min-width: 769px) {
  .hero-image {
    width: 50%;
  }

  .container {
    padding: 0 32px;
  }

  .content-container {
    padding: 0 32px;
  }

  .hamburger {
    display: none;
  }

  .nav-menu {
    display: flex;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    width: 44%;
  }

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

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

  .cta-button {
    font-size: 19px;
  }

  .story-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .story-text {
    width: 60%;
  }

  .story-title {
    font-size: 30px;
  }

  .events-title {
    font-size: 30px;
  }

  .events-description {
    font-size: 20px;
  }
  /* 
        .event-card {
          width: 400px;
        } */

  .event-title {
    font-size: 20px;
  }

  .moments-title {
    font-size: 30px;
  }

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

  .thumbnail {
    width: 160px;
    height: 130px;
  }

  .instagram-title {
    font-size: 50px;
  }

  .instagram-description {
    font-size: 25px;
  }

  .instagram-button {
    font-size: 23px;
  }

  .newsletter-title-line {
    font-size: 35px;
  }

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

  .newsletter-input {
    font-size: 25px;
  }

  .newsletter-button {
    font-size: 25px;
  }
}

@media (max-width:768px){


   .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 140px;
    right: 0;
    background-color: white;
    height: 100vh;
    padding: 20px;
    width: 100%;
    align-items: flex-start;
    z-index: 100;
  }

  .nav-menu.active {
    display: flex;
  }


  .hero-image{
    width: 100%;
  }

  .hero-content{
    flex-direction: column-reverse;
    gap: 20px;
  }

  .thumbnail{
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }

  .content-container {
    padding: 0 48px;
  }

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

  .story-content {
    gap: 80px;
  }

  .story-text {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .event-card {
    width: 100%;
  }

  .events-section {
    padding-right: 0;
    padding-left: 0;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .moments-section {
    padding-left: 0;
    padding-right: 0;
  }



  .thumbnail{
    height: 150px;
  }

  .main-image{
    height: 400px;
    object-fit: cover;
    object-position: center 40%;
  }
}


@media (max-width: 500px) {
  .carousel-arrow {
    width: 50px;
    height: 50px;
  }

  .carousel-arrow img {
    width: 22px;
    height: 22px;
  }

   .thumbnail{
    height: 120px;
  }

  .main-image{
    height: 350px;
    object-fit: cover;
    object-position: center 40%;
  }
}

@media (max-width:400px){
       .thumbnail{
    height: 100px;
  }

  .main-image{
    height: 300px;
    object-fit: cover;
    object-position: center 40%;
  }
}
