/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    background: #1f4f3a;
    color: white;
}

.top-bar {
    background: #165432;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info span {
    color: #a7f3d0;
}

.hours {
    color: #a7f3d0;
}

.main-nav {
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand h1 {
    font-size: 24px;
    font-weight: bold;
}

.navigation {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #a7f3d0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1f4f3a 0%, #166534 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    color: #a7f3d0;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    font-size: 16px;
    color: #a7f3d0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary {
    background: #fbbf24;
    color: #000;
}

.btn-primary:hover {
    background: #f59e0b;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1f4f3a;
}

.park-info {
    color: #a7f3d0;
}

.park-info p:first-child {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Quick Reservation Section */
.quick-reservation {
    background: #f9fafb;
    padding: 60px 0;
    text-align: center;
}

.quick-reservation h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111827;
}

.quick-reservation p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
}

.reservation-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.reservation-form form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-submit {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Amenities Section */
.amenities {
    padding: 80px 0;
    background: white;
}

.amenities h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #111827;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.amenity-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    transition: box-shadow 0.3s;
}

.amenity-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.amenity-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111827;
}

.amenity-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Location Section */
.location {
    background: #f9fafb;
    padding: 80px 0;
}

.location h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #111827;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.location-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.location-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.location-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
}

.distance {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 10px;
}

.location-item p:last-child {
    color: #6b7280;
    font-size: 14px;
}

.highway-access {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.highway-access p {
    margin-bottom: 10px;
    color: #374151;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #e5e7eb;
}

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #111827;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #10b981;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    margin-bottom: 10px;
    color: #d1d5db;
}

.footer-section a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #10b981;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .navigation {
        justify-content: center;
        margin-top: 15px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .reservation-form {
        padding: 20px;
        margin: 0 20px;
    }
}