/* Reset and base styles */
html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Header and navigation styles */
header {
    background-color: #005A9C;
    color: #ffffff;
    padding: 20px 0;
}

header h1 {
    text-align: center;
    margin: 0;
    color: #E9A124;
}

nav ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #E9A124;
}

/* Main content styles */
section {
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

section h2 {
    color: #005A9C;
    border-bottom: 2px solid #E9A124;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

section ul {
    list-style-type: none;
    padding: 0;
}

section ul li {
    background: url('icons/food-icon.png') no-repeat left center;
    padding-left: 25px;
    margin-bottom: 10px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* Recipes page specific styles */
#recipes h3 {
    color: #E9A124;
    margin-top: 20px;
    margin-bottom: 10px;
}

#recipes p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.recipe-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Culture and tourism page specific styles */
#culture ul li {
    background: url('icons/travel-icon.png') no-repeat left center;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8;
    color: #005A9C;
}

#map {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #ddd; /* Fallback for older browsers */
    background: linear-gradient(135deg, #ddd 0%, #eee 100%);
}

.tour {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.tour-content {
    padding: 20px;
}

.tour-title {
    color: #005A9C;
    margin-bottom: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    section {
        margin: 10px;
    }

    #map {
        height: 200px;
    }

    .tour-image {
        height: 150px;
        object-fit: cover;
    }
}