:root {
    --primary-orange: #FF8126;
    --dark-bg: #111;
    --light-text: #f4f4f4;
    --glass: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li { margin: 0 15px; }

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.btn-join {
    background: var(--primary-orange);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.highlight { color: var(--primary-orange); }

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s;
}

.cta-button:hover { transform: scale(1.05); }

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info{
    display: flex;
    justify-content: center;
    justify-items: center;
    align-content: center;
    flex-direction: column;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--primary-orange);
    margin-right: 15px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--glass);
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
}

.submit-btn {
    background: var(--primary-orange);
    border: none;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

/* Footer */
footer {
    padding: 50px 5%;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-logo { height: 30px; margin-bottom: 20px; }

.social-links{
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover { color: var(--primary-orange); }



.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Mobile Optimization */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
}