/* Import custom fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Montagu+Slab:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-dark: #102e50;
  --primary-yellow: #f5c45e;
  --primary-orange: #e78b48;
  --primary-red: #be3d2a;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;

  --font-primary: 'Jost', sans-serif;
  --font-accent: 'Montagu Slab', serif;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

h2 {
  font-size: 2rem;
  color: var(--primary-dark);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Header and Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-brand {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-dark);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  padding: 6rem 5% 3rem;
  background: linear-gradient(135deg, var(--primary-dark), #1c456d);
  color: var(--white);
  min-height: 80vh;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-title .highlight {
  color: var(--primary-yellow);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-primary,
.cta-secondary {
  padding: 0.875rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1;
}

.cta-primary {
  background-color: var(--primary-yellow);
  color: var(--primary-dark);
}

.cta-primary:hover {
  background-color: #e6b552;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
  border: 2px solid var(--primary-yellow);
  color: var(--primary-yellow);
}

.cta-secondary:hover {
  background-color: var(--primary-yellow);
  color: var(--primary-dark);
}

.hero-visual {
  flex: 1;
  animation: fadeIn 1.5s ease;
}

.hero-image-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 5%;
  background-color: var(--light-gray);
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-orange);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--primary-orange);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Activities Section */
.activities-section {
  padding: 4rem 5%;
}

.activities-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.activity-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: scale(1.02);
}

.activity-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activity-card:hover .activity-img {
  transform: scale(1.1);
}

.activity-info {
  padding: 1.25rem;
}

.activity-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.activity-info p {
  font-size: 0.925rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.activity-difficulty {
  display: inline-block;
  background-color: var(--primary-yellow);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Environment Section */
.environment-section {
  padding: 4rem 5%;
  background-color: var(--primary-dark);
  color: var(--white);
}

.environment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.environment-feature {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.environment-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.feature-overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.environment-feature:hover .feature-overlay {
  transform: translateY(0);
}

.environment-feature:hover .environment-img {
  transform: scale(1.1);
}

/* Schedule Section */
.schedule-section {
  padding: 4rem 5%;
}

.schedule-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  border: 2px solid var(--primary-dark);
  background: none;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-dark);
  color: var(--white);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
}

.schedule-day {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
}

.schedule-day h3 {
  text-align: center;
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.schedule-item {
  background-color: var(--white);
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.schedule-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.time {
  font-weight: 600;
  color: var(--primary-orange);
  font-size: 0.9rem;
}

.activity {
  margin: 0.375rem 0;
  font-size: 0.95rem;
}

.duration {
  font-size: 0.85rem;
  color: #666;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 5%;
  background-color: var(--light-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
  border: 2px solid var(--primary-orange);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.price-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 0.375rem 0.875rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0.75rem 0;
}

.price-desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.price-features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  text-align: left;
}

.price-features li {
  margin: 0.625rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
}

.price-btn {
  padding: 0.75rem 1.75rem;
  background-color: var(--primary-dark);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-btn:hover {
  background-color: var(--primary-orange);
  transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
  padding: 4rem 5%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  color: var(--primary-orange);
  margin-right: 1rem;
}

.contact-detail h3 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
  color: var(--primary-dark);
}

.contact-detail p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-container {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid transparent;
  border-radius: 8px;
  background-color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.submit-btn {
  width: 100%;
  padding: 0.875rem;
  background-color: var(--primary-orange);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--primary-red);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 3rem 5% 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--primary-yellow);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-column p {
  font-size: 0.925rem;
  opacity: 0.9;
}

.footer-links,
.footer-contacts {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contacts li {
  margin-bottom: 0.625rem;
  font-size: 0.925rem;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-yellow);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-yellow);
  color: var(--primary-dark);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  opacity: 1;
}

/* Legal Pages */
.legal-section {
  padding: 6rem 5% 4rem;
  background-color: var(--white);
}

.legal-date {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--primary-dark);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--primary-orange);
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-content ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.legal-content a {
  color: var(--primary-orange);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-red);
}

/* Success Page */
.success-section {
  padding: 6rem 5% 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-gray), #fff);
}

.success-content {
  text-align: center;
  max-width: 600px;
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: var(--primary-orange);
  animation: checkmark 0.5s ease;
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.success-content h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.success-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.section-content .title,
.section-content .legal-date {
  text-align: center;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .environment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 5rem 5% 3rem;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .schedule-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 1rem;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .activities-carousel {
    grid-template-columns: 1fr;
  }

  .environment-grid {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.75rem 3%;
  }

  .hero-section {
    padding: 4rem 3% 2rem;
  }

  .section-content {
    padding: 2.5rem 3%;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .legal-section {
    padding: 4rem 3% 3rem;
  }

  .success-content {
    padding: 1.5rem;
  }

  .success-actions {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.925rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }

  .price {
    font-size: 1.75rem;
  }

  .success-icon {
    width: 50px;
    height: 50px;
  }
}
