/* Activities Page Specific Styles */

/* Hero Section */
.activities-hero {
  margin-top: 70px;
  padding: 2rem 0rem;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.activities-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary-gold);
  opacity: 0.1;
  border-radius: 50%;
}

.activities-hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--primary-brown);
  opacity: 0.08;
  border-radius: 50%;
}

.hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.activities-hero .hero-text {
  text-align: left;
  padding: 6rem 2rem;
}

.hero-image-slider {
  position: relative;
  height: 350px;
  border: 5px solid white;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-right: 2rem;
}

.activities-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.activities-hero .hero-image.active {
  opacity: 1;
}

.activities-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--primary-brown);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background: white;
  width: 12px;
  height: 12px;
}

.activities-hero h1 {
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-brown);
  line-height: 1.2;
}

.activities-hero p {
  font-size: 1.4rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
}

/* Main Content */
.activities-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
}

/* Activity Section */
.activity-section {
  background: var(--bg-light);
  padding: 3rem;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
  border-radius: 25px;
}

.activity-section:last-child {
  margin-bottom: 4rem;
}

/* Dance & Arts Section */
.arts-intro {
  font-size: 1.3rem;
  color: var(--primary-brown);
  font-style: italic;
  margin-bottom: 3rem;
  line-height: 1.8;
  text-align: center;
}

.arts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Art card with image */
.art-card img {
  width: calc(100% + 5rem);
  height: 240px;
  object-fit: cover;
  object-position: top;
  margin: -2.5rem -2.5rem 1.5rem -2.5rem;
  border-radius: 20px 20px 0 0;
}

/* Schedule Section */
.schedule-section {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  margin-top: 3rem;
  border-left: 6px solid var(--primary-gold);
}

.schedule-section h2 {
  font-size: 2rem;
  color: var(--primary-brown);
  margin-bottom: 2rem;
  font-weight: 700;
}

.schedule-item {
  margin-bottom: 2rem;
}

.schedule-item:last-child {
  margin-bottom: 0;
}

.schedule-item h4 {
  font-size: 1.3rem;
  color: var(--primary-brown);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.schedule-item p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

/* Service Section */
.service-hero {
  background: var(--gradient-1);
  padding: 4rem 3rem;
  border-radius: 30px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 30px;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
}

.service-hero h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.service-hero .subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-hero p {
  font-size: 1.15rem;
  color: white;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.service-content {
  border-radius: 25px;
  margin-bottom: 2rem;
}

.service-content .tagline {
  font-size: 1.3rem;
  color: var(--primary-gold);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Nature Section */
.nature-section {
  background: var(--bg-light);
  border-radius: 30px;
  margin-bottom: 3rem;
  position: relative;
}

.nature-section h2 {
  font-size: 2.5rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-weight: 700;
}

.nature-section .tagline {
  font-size: 1.3rem;
  color: var(--primary-gold);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 600;
}

.nature-section p {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.nature-invite {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nature-invite h4 {
  font-size: 1.4rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-weight: 600;
}

.nature-invite ul {
  list-style: none;
  padding: 0;
}

.nature-invite ul li {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.nature-invite ul li:before {
  content: "→";
  color: var(--primary-gold);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
}

/* Quote Section - Activities specific */
.quote-section {
  background: var(--gradient-2);
  padding: 1.5rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(200, 120, 85, 0.2);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 150px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
}

.quote-section p {
  font-size: 1.2rem;
  font-style: italic;
  color: white;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* Section with Image Layout */
.section-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin: 2rem 0;
}

.section-with-image .section-text {
  flex: 1;
}

.section-with-image .section-image {
  flex: 1;
}

.section-with-image .section-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-with-image .section-image.vertical img {
  height: 400px;
  object-position: top;
}

/* Gallery - slower animation for more images */
.activities-content ~ .gallery-section .gallery-track {
  animation-duration: 80s;
}

/* Responsive */
@media (max-width: 968px) {
  .arts-grid {
    grid-template-columns: 1fr;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .activities-hero .hero-text {
    text-align: center;
    padding: 4rem 2rem;
  }

  .hero-image-slider {
    height: 400px;
    min-height: 400px;
    margin-right: 0;
  }

  .section-with-image {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .activities-hero .hero-text {
    padding: 3rem 1.5rem;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }
}

@media (max-width: 768px) {
  .service-hero,
  .nature-section {
    padding: 2.5rem 1.5rem;
  }

  .service-hero h2 {
    font-size: 2rem;
  }

  .service-hero .subtitle {
    font-size: 1.1rem;
  }

  .schedule-section {
    padding: 2rem 1.5rem;
  }

  .schedule-section h2 {
    font-size: 1.6rem;
  }

  .activities-content {
    padding: 3rem 1.5rem;
  }

  .activity-section {
    padding: 2rem 1.5rem;
    margin-bottom: 4rem;
  }

  .arts-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .nature-section h2 {
    font-size: 2rem;
  }

  .nature-section .tagline {
    font-size: 1.1rem;
  }

  .nature-invite {
    padding: 2rem;
  }

  .quote-section {
    padding: 2rem 1.5rem;
  }

  .quote-section p {
    font-size: 1.05rem;
  }

  .section-with-image .section-image img {
    height: 250px;
  }

  .section-with-image .section-image.vertical img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .activities-hero {
    padding: 1.5rem 0;
  }

  .activities-hero .hero-text {
    padding: 2rem 1rem;
  }

  .activities-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .activities-hero p {
    font-size: 1.1rem;
  }

  .hero-image-slider {
    height: 280px;
    min-height: 280px;
    margin: 0 1rem;
  }

  .activities-content {
    padding: 2rem 1rem;
  }

  .activity-section {
    padding: 1.5rem;
    margin-bottom: 3rem;
    border-radius: 20px;
  }

  .arts-intro {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .art-card img {
    width: calc(100% + 3rem);
    height: 180px;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    border-radius: 15px 15px 0 0;
  }

  .service-hero {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
  }

  .service-hero h2 {
    font-size: 1.6rem;
  }

  .service-hero .subtitle {
    font-size: 1rem;
  }

  .service-hero p {
    font-size: 1rem;
  }

  .service-content .tagline {
    font-size: 1.1rem;
  }

  .nature-section {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .nature-section h2 {
    font-size: 1.6rem;
  }

  .nature-section .tagline {
    font-size: 1rem;
  }

  .nature-section p {
    font-size: 1rem;
  }

  .nature-invite {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .nature-invite h4 {
    font-size: 1.2rem;
  }

  .nature-invite ul li {
    font-size: 1rem;
  }

  .schedule-section {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .schedule-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .schedule-item h4 {
    font-size: 1.1rem;
  }

  .schedule-item p {
    font-size: 0.95rem;
  }

  .quote-section {
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }

  .quote-section p {
    font-size: 1rem;
  }

  .section-with-image .section-image img {
    height: 200px;
  }

  .section-with-image .section-image.vertical img {
    height: 280px;
  }
}
