/* Outdoor Education Styles */
:root {
    --outdoor-primary: #059669;
    --outdoor-secondary: #10b981;
    --outdoor-accent: #34d399;
    --outdoor-light: #d1fae5;
    --outdoor-dark: #064e3b;
    --earth-brown: #92400e;
    --sky-blue: #0ea5e9;
    --forest-green: #166534;
  }
  
  /* Hero Section */
  .outdoor-hero {
    position: relative;
    height: 70vh;
    background: linear-gradient(
      135deg,
      var(--outdoor-primary) 0%,
      var(--outdoor-secondary) 50%,
      var(--outdoor-accent) 100%
    );
    background-image: url("/assets/images/outdoor/outdoor-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(5, 150, 105, 0.7);*/
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
  }
  
  .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.4s both;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  
  /* Programs Section */
  .outdoor-programs {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fafc, var(--outdoor-light));
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: var(--outdoor-dark);
    margin-bottom: 1rem;
    position: relative;
  }
  
  .section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--outdoor-primary), var(--outdoor-accent));
    border-radius: 2px;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
  }
  
  .program-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .program-card:hover .program-image img {
    transform: scale(1.1);
  }
  
  .program-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .program-overlay span {
    background: rgba(255, 255, 255, 0.9);
    color: var(--outdoor-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
  }
  
  .program-content {
    padding: 2rem;
  }
  
  .program-content h3 {
    font-size: 1.5rem;
    color: var(--outdoor-dark);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .program-content > p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .program-features {
    background: var(--outdoor-light);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
  }
  
  .program-features h4 {
    color: var(--outdoor-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .program-features p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Faculty Section */
  .outdoor-faculty {
    padding: 80px 0;
    background: white;
  }
  
  .faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .faculty-card {
    background: linear-gradient(135deg, var(--outdoor-light) 0%, white 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--outdoor-accent);
  }
  
  .faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
  }
  
  .faculty-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--outdoor-accent);
    position: relative;
  }
  
  .faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .faculty-info h3 {
    color: var(--outdoor-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .designation {
    color: var(--outdoor-primary);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .faculty-details p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    text-align: left;
  }
  
  /* Facilities Section */
  .outdoor-facilities {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--outdoor-light) 0%, #f0fdf4 100%);
  }
  
  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .facility-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--outdoor-accent);
  }
  
  .facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
  }
  
  .facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--outdoor-primary), var(--outdoor-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
  }
  
  .facility-item h3 {
    color: var(--outdoor-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .facility-item p {
    color: #6b7280;
    line-height: 1.6;
  }
  
  /* Events Section */
  .outdoor-events {
    padding: 80px 0;
    background: white;
  }
  
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .event-card {
    background: linear-gradient(135deg, white 0%, var(--outdoor-light) 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--outdoor-accent);
    display: flex;
    gap: 1.5rem;
  }
  
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
  }
  
  .event-date {
    background: linear-gradient(135deg, var(--outdoor-primary), var(--outdoor-accent));
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
  }
  
  .event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color:#fff;
  }
  
  .event-date .month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    color:#000;
  }
  
  .event-content h3 {
    color: var(--outdoor-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .event-location {
    color: var(--outdoor-primary);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .event-location i {
    margin-right: 0.5rem;
  }
  
  .event-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  /* Benefits Section */
  .outdoor-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--outdoor-dark) 0%, var(--forest-green) 100%);
    color: white;
  }
  
  .outdoor-benefits .section-header h2 {
    color: white;
  }
  
  .outdoor-benefits .section-header p {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  
  .benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
  }
  
  .benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--outdoor-accent), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
  }
  
  .benefit-item h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }
  
  /* CTA Section */
  .outdoor-cta {
    padding: 80px 0;
    background: linear-gradient(
      135deg,
      var(--outdoor-primary) 0%,
      var(--outdoor-secondary) 50%,
      var(--outdoor-accent) 100%
    );
    color: white;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--outdoor-primary), var(--outdoor-secondary));
    color: white;
  }
  
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--outdoor-secondary), var(--outdoor-accent));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--outdoor-primary);
    border: 2px solid var(--outdoor-primary);
  }
  
  .btn-outline:hover {
    background: var(--outdoor-primary);
    color: white;
    transform: translateY(-2px);
  }
  
  .outdoor-cta .btn-outline {
    color: white;
    border-color: white;
  }
  
  .outdoor-cta .btn-outline:hover {
    background: white;
    color: var(--outdoor-primary);
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
  }
  
  .modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  
  .modal-header {
    background: linear-gradient(135deg, var(--outdoor-primary), var(--outdoor-secondary));
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
  }
  
  .close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }
  
  .close:hover {
    opacity: 0.7;
  }
  
  .enrollment-form {
    padding: 2rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--outdoor-dark);
    font-weight: 500;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--outdoor-primary);
  }
  
  .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.2rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .programs-grid,
    .faculty-grid,
    .facilities-grid,
    .events-grid,
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .event-card {
      flex-direction: column;
      text-align: center;
    }
  
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .modal-content {
      width: 95%;
      margin: 5% auto;
    }
  
    .form-actions {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .outdoor-hero {
      height: 60vh;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .section-header h2 {
      font-size: 1.8rem;
    }
  
    .programs-grid,
    .faculty-grid,
    .facilities-grid,
    .events-grid,
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .program-card,
    .faculty-card,
    .facility-item,
    .event-card,
    .benefit-item {
      padding: 1.5rem;
    }
  
    .enrollment-form {
      padding: 1.5rem;
    }
  }
  