/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Typography & Neon Effects */
.neon-text {
    color: #fff;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff00ff,
        0 0 40px #ff00ff,
        0 0 80px #ff00ff;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.neon-text-small {
    color: #ffb3ff;
    text-shadow: 0 0 10px #ff00ff;
    margin-bottom: 15px;
    font-size: 2rem;
}

/* Header & Navigation */
header {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #330033;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
}

/* Sections & Layout */
.hero-section {
    width: 100%;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border: 1px solid #ff00ff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.overlay-text h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 50px;
    border-bottom: 1px solid #222;
}

.content-section.reverse {
    flex-direction: row-reverse;
}

.section-text {
    flex: 1;
}

.section-text p {
    font-size: 1.1rem;
    color: #b3b3b3;
}

.image-showcase {
    flex: 1;
}

.content-img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.1);
    transition: transform 0.3s ease;
}

.content-img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.map-img {
    border: 2px solid #333;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background-color: #050505;
    color: #666;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .content-section, .content-section.reverse {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }
    .overlay-text h2 {
        font-size: 1.5rem;
    }
}