:root {
    --primary-color: #1b4965;
    --secondary-color: #62b6cb;
    --accent-color: #bee9e8;
    --text-color: #1b1b1b;
    --background-color: #ffffff;
    --hero-height: 60vh;
}

.nav-container {
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Add to your existing media queries */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Adjust hero section to account for fixed nav */
.hero-section {
    margin-top: 60px;
}

/* ... existing code ... */

.hero-section {
    height: var(--hero-height);
    background-image: url('https://images.unsplash.com/photo-1534430480872-3498386e7856');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.section-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

/* Add after existing code */

.amenities-section {
    padding: 4rem 2rem;
    background-color: var(--accent-color);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.amenity {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.amenity i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.map-section {
    padding: 4rem 2rem;
}

.map-container {
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Add after existing code */

.cuisine-type, .price-range {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.featured-dish-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.dish-item {
    text-align: center;
    padding: 1rem;
}

.dish-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.dish-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .dish-grid {
        grid-template-columns: 1fr;
    }
}

/* Add after existing code */

.featured-event {
    background-color: var(--accent-color);
    padding: 4rem 2rem;
}

.event-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.event-countdown {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 2rem 0;
    font-weight: bold;
}

.event-details {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.event-date, .event-location {
    color: #666;
    margin-bottom: 1rem;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.event-info {
    padding: 1.5rem;
}

.event-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0.5rem 0.5rem 0.5rem 0;
}

@media (max-width: 768px) {
    .event-countdown {
        font-size: 1.5rem;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
}
/* Add after existing code */

.attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.attraction-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.attraction-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.attraction-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.attraction-content {
    padding: 1.5rem;
}

.attraction-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.attraction-description {
    color: #666;
    margin: 1rem 0;
    line-height: 1.6;
}

.attraction-details {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    color: #666;
}

.attraction-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activities-section {
    background-color: var(--accent-color);
    padding: 4rem 2rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.activity-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.activity-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.activity-item ul {
    list-style: none;
    padding: 0;
}

.activity-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .attraction-card.featured {
        grid-template-columns: 1fr;
    }
    
    .attraction-image {
        height: 200px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
}
