/* Custom Properties for easy color changes */
:root {
    --primary-color: #2c3e50;    /* Dark blue, similar to Bashar.kw */
    --secondary-color: #f39c12;  /* A bright orange accent */
    --background-color: #ecf0f1; /* Light gray background */
    --text-color: #34495e;       /* Dark gray text */
    --pin-color-soon: #ffac01;        /* Green for pins */
    --pin-color: #01ff8a;        /* Green for pins */
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

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

a { 
    color:white;
}
/* Header */
.main-header {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 150px;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('your_hero_image.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2em;
    font-weight: 300;
}

/* Map Section */
.map-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #f7f9fb;
}

.map-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.map-section p {
    font-size: 1.1em;
    margin-bottom: 40px;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.map-container svg {
    width: 100%;
    height: auto;
}
/* Pins — no movement on hover */
.map-pin {
    fill: var(--pin-color);
    stroke: #ffffff;
    stroke-width: 3;
    /* keep the circle anchored */
    transform-box: fill-box;
    transform-origin: center;
    vector-effect: non-scaling-stroke;  /* stroke doesn't bloat when map scales */
    /* smooth color/glow only (no transform) */
    transition: fill 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.map-pin-soon {
    fill: var(--pin-color);
    stroke: #ffffff;
    stroke-width: 3;
    /* keep the circle anchored */
    transform-box: fill-box;
    transform-origin: center;
    vector-effect: non-scaling-stroke;  /* stroke doesn't bloat when map scales */
    /* smooth color/glow only (no transform) */
    transition: fill 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

/* Hover: color + subtle glow, NO scale */
.map-pin:hover {
    /* remove the scale that caused the “jump” */
    /* transform: scale(1.2);  <-- delete this line */
    fill: #01ff8a;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.35));
}

/* Hover: color + subtle glow, NO scale */
.map-pin-soon:hover {
    /* remove the scale that caused the “jump” */
    /* transform: scale(1.2);  <-- delete this line */
    fill: #ffac01;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.35));
}

/* Content Section */
.content-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: #ecf0f1;
    text-align: center;
    padding: 25px;
}

/* Lightbox (Popup) */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    background-color: #fefefe;
    position: relative;
    margin: 10% auto;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 700px;
    animation: fadeIn 0.5s;
    overflow: hidden;
}

.lightbox-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.lightbox-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox-header h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 2em;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.lightbox-body {
    padding: 20px;
    text-align: left;
}

.lightbox-body p {
    margin-bottom: 15px;
}

.close-btn {
    color: #ffffff;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        flex-direction: column;
        margin-top: 15px;
    }

    .main-nav ul li {
        margin: 10px 0;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }
}
