/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar styles */
.navbar {
    background-color: #eadacd;
    padding: 15px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: bold;
}

/* Hero section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Popular cities section */
.popular-cities {
    padding: 60px 0;
}

.popular-cities h2 {
    margin-bottom: 40px;
    font-size: 28px;
    text-align: left;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.city-card {
    background-color: #eadacd;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.city-card:hover {
    background-color: #e0cdbf;
    transform: translateY(-3px);
}

/* Park features section */
.park-features {
    padding: 60px 0;
}

.park-features h2 {
    margin-bottom: 40px;
    font-size: 28px;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    text-align: left;
}

.feature i {
    margin-right: 15px;
    font-size: 20px;
    color: #333;
    width: 25px;
}

/* FAQ section (Accordion) */
.faq {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background-color: #eadacd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #e0cdbf;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: normal;
    display: flex;
    align-items: center;
}

.faq-item i {
    margin-right: 15px;
    color: #333;
    transition: transform 0.3s ease;
}

.faq-item.active i {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 15px 15px;
    max-height: 200px;
}

/* States List Page */
.states-section {
    padding: 40px 0 60px 0;
}

.states-section h1 {
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.state-card {
    background-color: #eadacd;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.state-card:hover {
    background-color: #e0cdbf;
    transform: translateY(-3px);
}

/* Responsive styles for States page */
@media (max-width: 768px) {
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .states-grid {
        grid-template-columns: 1fr;
    }
}

/* About Us page */
.about-content {
    padding: 60px 0;
}

.about-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: #333;
}

.about-story {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

.signature {
    font-style: italic;
    margin-top: 30px;
}

/* Responsive styles for About page */
@media (max-width: 768px) {
    .about-story {
        flex-direction: column-reverse;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #e7e7e7;
}

/* Footer */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links ul li {
    margin: 0 15px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-logo {
    margin: 20px 0;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
}

.footer-copyright {
    margin-top: 10px;
    font-size: 12px;
    color: #777;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 15px;
    }
/* Hours Table Styles */
.hours-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 15px;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
    min-width: 600px; /* Ensures table doesn't get too compressed */
}

.hours-table th, 
.hours-table td {
    border: 1px solid #e0e0e0;
    padding: 8px;
    text-align: center;
}

.hours-table th {
    background-color: #eadacd; /* Matches your existing color scheme */
    font-weight: 500;
}

.hours-table th:first-child {
    width: 120px;
    text-align: left;
}

.hours-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.hours-table .open-time {
    color: #d4c0a9; /* Beige color as requested */
    font-weight: bold;
    font-size: 16px;
}

.hours-table .closed-time {
    color: #777; /* Matches your footer text color */
}

/* Special notes styling */
.special-notes {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #555;
    font-style: italic;
}

.special-notes i {
    margin-right: 5px;
}

/* Responsive adjustments for hours table */
@media (max-width: 768px) {
    .hours-table {
        font-size: 13px;
    }
    
    .hours-table th, 
    .hours-table td {
        padding: 6px 4px;
    }
    
    .hours-table th:first-child {
        width: 100px;
    }
    
    .hours-table .open-time {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .hours-table-container {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        padding: 0 15px;
    }
    
    .hours-table {
        font-size: 12px;
        min-width: 480px;
    }
    
    .hours-table th, 
    .hours-table td {
        padding: 5px 3px;
    }
    
    .hours-table th:first-child {
        width: 90px;
    }
    
    .hours-table .open-time {
        font-size: 14px;
    }
}
