/* General Body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Header Navigation Bar */
header {
    background-color: #0066cc;
    color: white;
    padding: 10px;
    text-align: center;
}

header h1 {
    margin: 0;
}

header p a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

header p a.active {
    font-weight: bold;
}

/* Section Padding and Titles */
section {
    padding: 40px;
    text-align: center;
}

section h2 {
    font-size: 36px;
    color: #333;
}

section p {
    font-size: 18px;
    color: #555;
}

/* Cards/Boxes */
.card {
    background-color: #fff;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto 30px auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Card Headings */
.card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.card h4 {
    color: #0066cc;
    margin-top: 20px;
}

.card ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
}

/* Card Images Fix */
.card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    display: block;
}

/* Destination Details */
.destination {
    padding: 30px;
    max-width: 900px;
    margin: 20px auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.destination h3 {
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.destination h3.green {
    color: #4CAF50;
    border-bottom: 2px solid #4CAF50;
}

.destination h3.orange {
    color: #FF9800;
    border-bottom: 2px solid #FF9800;
}

.destination h4 {
    color: #0066cc;
    margin-top: 25px;
}

.destination ul {
    list-style-type: none;
    padding-left: 0;
}

.destination ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.destination ul li span {
    position: absolute;
    left: 0;
}

.destination .flex-images {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.destination .flex-images div {
    width: 48%;
}

.destination .flex-images img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Popular Destinations on Home */
.popular {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 15px;
    width: 80%;
    max-width: 400px;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

.popular h3 {
    color: #0066cc;
}

.popular .images {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 10px;
}

.popular .images img {
    width: 49%;
    height: auto;
    border: 1px solid #ddd;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

footer a {
    color: #88ddff;
    text-decoration: none;
}

footer p {
    font-size: 12px;
    margin-top: 10px;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: orange;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 4px;
}

/* Specific Page Background Overrides */
body.travel {
    background-color: #f9f9f9;
}

body.destination {
    background-color: #f4f4f4;
}

body.culture {
    background-color: #f8f8f8;
}

/* Culture & Activities Grid */
section.culture-section {
    max-width: 1000px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

