
:root{
    --background-color:white;
    --font-color:black;
    --font-color-white:white;
    --black-hover-color:rgba(0, 0, 0, 0.469);
    --white-hover-color:#ffffff;
    --bottums-color: #025959;
    --sections-bakcground-color:#f9f9f9;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


body {
    font-family: 'Arial', sans-serif; /* Matching your style.css */
    color: var(--text-color-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
     line-height: 1.6;
    color: #333;
}
/* Header Section */
.hero {
    background-image: url('images/birding\ seasons\ img\ .png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.seasons-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.seasons-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seasons-title h2 {
    font-size: 28px;
    margin: 0;
    padding: 0 15px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.title-first{
    font-size: 28px;
}

.seasons-title::before {
    
    font-size: 32px;
    margin-right: 10px;
}

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

.seasons-table thead {
    background-color: var(--bottums-color);
    color: white;
}

.seasons-table th {
    text-align: left;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

.seasons-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eaeaea;
}

.seasons-table tbody tr {
    background-color: white;
    transition: background-color 0.3s ease;
}

.seasons-table tbody tr:hover {
    background-color: #f9f9f9;
}

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

/* Season-specific colors */


.recommendations {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    justify-content: center;
    
}

.recommendations h3 {
    margin-top: 0;
    color: #333;
    font-size: 20px;
    display: flex;
    justify-content: center;
}

.recommendations h3::before {
    
    margin-right: 10px;
    font-size: 24px;
}

.recommendations ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.recommendations li {
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    align-items: center;
    text-align: center;
}

.recommendations li:last-child {
    border-bottom: none;
}

.recommendations li::before {
    content: "→";
    color: var(--bottums-color);
    margin-right: 10px;
    font-weight: bold;
}

.recommendations a {
    font-weight: bold;
    color: var(--bottums-color);
    text-align: left;
    text-decoration: none;
}

.recommendations p {
    font-style: italic;
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: #555;
}

@media (max-width: 500px) {
    .seasons-table {
        display: block;
        overflow-x: auto;
    }
    
    .seasons-title h2 {
        font-size: 24px;
    }
    
    .seasons-table th, 
    .seasons-table td {
        padding: 5px;
    }
    
    .recommendations {
        padding: 15px;
    }
    .title-first{
        font-size: 24px;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    .title-first{
        font-size: 24px;
    }
    
}

@media (max-width: 480px) {
  
    .hero {
        padding: 60px 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    .title-first {
        font-size: 24px;
    }
}

/* Small phone optimization */
@media (max-width: 360px) { 
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .title-first {
        font-size: 24px;
    }
}