/* Reset and Base Styles */
body {
    font-family: 'Georgia', serif; /* Elegant, magazine-like font */
    margin: 0;
    padding: 0;
    background: #f5f7fa; /* Soft off-white for a clean backdrop */
    color: #2d2d2d; /* Dark gray for readability */
    line-height: 1.6;
}

/* Header */
.header-container {
    background: linear-gradient(135deg, #1e90ff, #ff6f61); /* Vibrant blue to coral gradient */
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container .logo {
    max-height: 60px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffe066; /* Bright yellow hover for flair */
}

/* Main Layout */
.main-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 40px auto;
    gap: 30px;
    padding: 0 20px;
}

.left-column, .right-column {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8ecef;
}

.center-column {
    flex: 3;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8ecef;
}

/* Typography */
h1 {
    color: #ff6f61; /* Coral for headings */
    font-size: 36px;
    margin: 0 0 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    color: #1e90ff; /* Blue for subheadings */
    font-size: 24px;
    margin: 0 0 15px;
    font-weight: 600;
}

p {
    font-size: 16px;
    color: #555;
}

/* Links and Buttons */
a {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6f61;
}

button {
    background: #ff6f61;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #e65b50; /* Darker coral on hover */
}

/* Image Handling */
.location-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.location-images img:hover {
    transform: scale(1.05);
}

.location-images.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Form Elements */
input, textarea, select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #d1d8dd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #1e90ff;
    outline: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .logo-container .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }

    .main-container {
        flex-direction: column;
        margin: 20px;
        padding: 0 10px;
    }

    .left-column, .center-column, .right-column {
        width: 100%;
        min-width: 0;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2, h3 {
        font-size: 20px;
    }

    button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .location-images.gallery {
        grid-template-columns: 1fr;
    }

    nav ul li a {
        font-size: 16px;
        padding: 6px 12px;
    }
}
/* [Previous CSS unchanged until nav ul...] */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center; /* Center vertically */
}

nav ul li.lang-switcher a {
    font-size: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

nav ul li.lang-switcher a.active {
    background: #ffe066;
    color: #2d2d2d;
}

/* [Rest of CSS unchanged...] */