/* --- Existing CSS kept intact --- */
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body & general */
body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #004d00;
    text-align: center;
    color: #fff;
    position: relative;
}

/* Logo */
.logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}
.logo { max-width: 350px; height: auto; }

/* Header text */
.container {
    padding: 10px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    display: inline-block;
}
h1 { font-size: 3rem; font-weight: bold; text-transform: uppercase; }
.neon {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 
        0 0 5px rgba(0, 255, 0, 0.5),
        0 0 10px rgba(0, 255, 0, 0.5),
        0 0 20px rgba(0, 255, 0, 0.5),
        0 0 40px rgba(0, 255, 0, 0.7),
        0 0 80px rgba(0, 255, 0, 0.9),
        0 0 100px rgba(0, 255, 0, 1);
    animation: neonPulse 1.5s infinite alternate;
}
@keyframes neonPulse {
    0%,100% { text-shadow: 0 0 5px rgba(0,255,0,0.5),0 0 10px rgba(0,255,0,0.5),0 0 20px rgba(0,255,0,0.5),0 0 40px rgba(0,255,0,0.7),0 0 80px rgba(0,255,0,0.9),0 0 100px rgba(0,255,0,1);}
    50% { text-shadow: 0 0 5px rgba(0,255,0,0.2),0 0 10px rgba(0,255,0,0.2),0 0 20px rgba(0,255,0,0.2),0 0 40px rgba(0,255,0,0.4),0 0 80px rgba(0,255,0,0.5),0 0 100px rgba(0,255,0,0.6);}
}

/* Description */
.description {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #f0f0f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* Social links */
.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    position: relative;
}
.social-links a {
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-links a:hover {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    transform: scale(1.2);
}

/* Location Section */
.location-section-wrapper {
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
}
.location-section-wrapper h2 {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.location-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}
.image-wrapper, .map-wrapper { flex: 1; min-width: 300px; display: flex; }
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    border: 3px solid #00ff00;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Mobile responsiveness */
@media(max-width: 768px) {
    .location-section { flex-direction: column; align-items: center; }
    .image-wrapper, .map-wrapper { width: 100%; height: auto; }
    .map-wrapper iframe { height: 300px; }
}

/* Shapes */
/* Top Shape SVG */
.top-shape svg {
    width: 100%;
    display: block;
    min-height: 20vh; /* adjust for top shape */
}

/* Bottom Shape SVG */
.bottom-shape svg {
    width: 100%;
    display: block;
    min-height: 15vh; /* for bottom shape */
}

/* Top Shape Container */
.top-shape { 
    position: relative; 
    top: 0; 
}

/* Bottom Shape Container */
.bottom-shape { 
    position: relative; 
    background-color: #FFD500; 
    padding-top: 50px; 
    padding-bottom: 50px; 
}

.button-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffffff; 
    color: #000000; 
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Arial', sans-serif; 
    transition: background-color 0.3s, transform 0.2s;
    margin-right: 10px; /* spațiu între butoane */
}

.button-link:hover {
    background-color: #666;
    transform: translateY(-2px);
}

.button-link:active {
    transform: translateY(0);
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.photo-gallery img {
    flex: 1 1 calc(20% - 15px); /* max 5 per row, minus gap */
    max-width: calc(20% - 15px);
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.photo-gallery img:hover {
    transform: scale(1.05);
}

/* Mobile: scroll horizontal */
@media (max-width: 600px) {
    .photo-gallery {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .photo-gallery img {
        flex: 1 1 calc(33.33% - 10px); /* max 3 per row */
        max-width: calc(33.33% - 10px);
        height: 150px;
    }

    .photo-gallery::-webkit-scrollbar {
        height: 6px;
    }

    .photo-gallery::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 3px;
    }
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* Săgeți */
.lightbox .arrow {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    padding: 10px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
}

.lightbox .prev {
    left: 20px;
}

.lightbox .next {
    right: 20px;
}

.photo-gallery video {
    flex: 1 1 calc(20% - 15px); /* max 5 per row pe desktop */
    max-width: calc(20% - 15px);
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.photo-gallery video:hover {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 600px) {
    .photo-gallery video {
        flex: 1 1 calc(33.33% - 10px); /* max 3 pe rând pe mobil */
        max-width: calc(33.33% - 10px);
        height: 150px;
    }
}