/* GLOBAL STYLES */
:root {
    --primary: #4a7c87; 
    --secondary: #f4f7f6; 
    --text: #333;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--secondary);
}

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

/* HEADER */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    margin: 0 15px;
    font-weight: 500;
}

.lang-switch {
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
}

/* HERO IMAGE SECTION */
.hero {
    /* This loads your hero.jpg image */
    background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.hero h1 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.hero .highlight {
    color: var(--primary);
    font-size: 1.3em;
    font-weight: bold;
}

/* SECTIONS */
.section {
    background: var(--white);
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section h3 {
    color: var(--primary);
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.grid-layout {
    display: flex;
    gap: 30px;
    align-items: center;
}

.text-col { flex: 2; }
.img-col { flex: 1; }

.img-col img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* FORM */
form { display: flex; flex-direction: column; max-width: 500px; }
input, textarea { padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; }
button { background: var(--primary); color: var(--white); border: none; padding: 10px 20px; cursor: pointer; border-radius: 4px; font-size: 1rem; }
button:hover { background: #365f6b; }

footer { text-align: center; padding: 20px; font-size: 0.9rem; color: #666; }

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #ccc;
}

/* LOCATIONS */
.flags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 80px;
}

.flag-emoji {
    font-size: 2.5rem;
}

.flag-item span:last-child {
    font-size: 0.9rem;
    color: var(--text);
}

.map-container {
    margin-top: 20px;
}

.map-container img {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.world-map-svg {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.world-map-bg {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-pins-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-pin circle:first-child {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.more-countries {
    text-align: center;
    font-style: italic;
    color: var(--primary);
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .grid-layout { flex-direction: column; }
    nav { flex-direction: column; gap: 15px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}