:root {
    --background-light: #F3E9DC;
    --background-dark: #D6CFC2;
    --text-light: #3A2E1F;
    --text-dark: #1E1810;
    --primary-light: #7A5F3D;
    --primary-dark: #5C4425;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--background-light);
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-text {
    background-image: url('../HomeImage/crater.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    margin-top: 140px;
    text-align: center;
    color: white;
    border-radius: 1rem; /* optional for nice rounded edges */
    position: relative;
    z-index: 1;
  }
  
  .hero-text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* dark overlay */
    z-index: -1;
    border-radius: 1rem;
  }
  
  .hero-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
  }
  
  .hero-text .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
  }


.intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.highlight-box {
    flex-basis: 30%;
    background-color: var(--background-dark);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.highlight-box h3 {
    color: var(--primary-light);
    margin-top: 10px;
}

.highlight-box img {
    max-width: 100%;
    border-radius: 4px;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-size: 32px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    flex-basis: 48%;
}

.info-box {
    background-color: var(--background-dark);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-box h3 {
    color: var(--primary-light);
    margin-top: 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-light);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.gallery-img {
    flex: 1 1 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-img img:hover {
    transform: scale(1.1);
}

.wildlife-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.wildlife-card {
    flex: 1 1 230px;
    background-color: var(--background-dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wildlife-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.wildlife-info {
    padding: 15px;
}

.wildlife-info h4 {
    color: var(--primary-light);
    margin-top: 0;
    margin-bottom: 8px;
}

.wildlife-info p {
    margin: 0;
    font-size: 0.95rem;
}

.seasons-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    background-color: var(--background-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.seasons-table th, .seasons-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.seasons-table th {
    background-color: var(--primary-light);
    color: white;
}

.seasons-table tr:last-child td {
    border-bottom: none;
}

.seasons-table tr:nth-child(even) {
    background-color: var(--background-light);
}

.rating {
    display: flex;
    color: var(--primary-light);
}

footer {
    background-color: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

@media (max-width: 768px) {
    .highlight-box, .column {
        flex-basis: 100%;
    }
}
