/* General styles */
:root {
    --forest-50: #f2f9f5;
    --forest-100: #e1f1e7;
    --forest-300: #8db398;
    --forest-500: #4d7f5a;
    --forest-600: #3c6347;
    --forest-700: #2c4834;
    --forest-800: #243a2a;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: #333;
    scroll-behavior: smooth;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  /* Custom classes */
  .text-shadow {
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.8);
  }
  
  /* Header styles */
  header {
    transition: all 0.3s ease;
    background-color: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(5px);
  }
  
  header.scrolled {
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
  }
  
  .nav-link {
    color: white;
    margin: 0 0.75rem;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .nav-link:hover {
    color: var(--forest-100);
  }
  
  .mobile-menu {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    animation: fadeIn 0.3s ease;
  }
  
  /* Hero section */
  .hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?q=80&w=1470');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    margin-bottom: 0;
  }
  
  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
  }
  
  .hero-icon {
    display: inline-block;
    padding: 1rem;
    background-color: rgba(36, 58, 42, 0.8);
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .hero-icon i {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-primary {
    background-color: var(--forest-600);
    border-color: var(--forest-600);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
  }
  
  .btn-primary:hover {
    background-color: var(--forest-700);
    border-color: var(--forest-700);
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
  }
  
  .bounce {
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-20px);
    }
    60% {
      transform: translateY(-10px);
    }
  }
  
  /* Section styling */
  section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-800);
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
    color: var(--forest-500);
    margin-bottom: 2rem;
  }
  
  /* About section */
  .feature-card {
    background-color: white;
    border: 1px solid var(--forest-100);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--forest-100);
    border-radius: 50%;
    color: var(--forest-600);
  }
  
  .icon-circle i {
    font-size: 1.25rem;
  }
  
  .feature-card h3 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--forest-800);
  }
  
  .feature-card p {
    font-size: 0.9rem;
    color: #666;
  }
  
  .forest-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--forest-100);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .forest-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  .important-notice {
    background-color: var(--forest-100);
    color: var(--forest-800);
    border-radius: 0.5rem;
    padding: 1rem;
    font-weight: 500;
  }
  
  /* Gallery section */
  .gallery-item {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1.02);
  }
  
  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  /* Location section */
  .map-container {
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Contact section */
  form label {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  /* Terms section */
  .terms-list {
    list-style-type: none;
    padding: 0;
  }
  
  .terms-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
  }
  
  /* Host section */
  .host-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
  }
  
  /* Footer */
  footer {
    background-color: var(--forest-800);
    color: white;
  }
  
  .footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  footer h3 {
    font-weight: 600;
    font-size: 1.5rem;
  }
  
  .footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .footer-link:hover {
    color: var(--forest-300);
  }
  
  /* Toast */
  .toast {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Media queries */
  @media (max-width: 767.98px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .tagline {
      font-size: 1.2rem;
    }
    
    section h2 {
      font-size: 2rem;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }