/* Navigation Styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-nav {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}/* Global Styles */
:root {
    --primary: #7209b7;
    --secondary: #3a0ca3;
    --accent: #4cc9f0;
    --dark: #121212;
    --light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    animation: headerGradient 20s ease-in-out infinite alternate;
    background-size: 400% 400%;
}

@keyframes headerGradient {
    0% {
        background-position: 0% 50%;
        background-image: linear-gradient(135deg, #7209b7, #3a0ca3, #4361ee);
    }
    25% {
        background-position: 50% 100%;
        background-image: linear-gradient(135deg, #6411a6, #4361ee, #4895ef);
    }
    50% {
        background-position: 100% 50%;
        background-image: linear-gradient(135deg, #560bad, #4895ef, #3f37c9);
    }
    75% {
        background-position: 50% 0%;
        background-image: linear-gradient(135deg, #7b2cbf, #3f37c9, #560bad);
    }
    100% {
        background-position: 0% 50%;
        background-image: linear-gradient(135deg, #7209b7, #3a0ca3, #4361ee);
    }
}

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

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-accent {
    color: var(--accent);
}

/* Hero Section */
.hero {
    background: url('/api/placeholder/1200/600') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(76, 201, 240, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 201, 240, 0.5);
}

.coming-soon {
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--accent);
}

/* Features Section */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 1rem;
    color: white;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 1rem auto 0;
}

.section-title p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

/* Setup Section */
.setup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: center;
}

.setup-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.setup-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.setup-points {
    margin: 2rem 0;
}

.setup-point {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.setup-point-icon {
    background: var(--accent);
    color: var(--dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.setup-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.setup-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Counter Section */
.counter-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4rem 0;
}

.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.counter-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.counter-item p {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

/* Location Section */
.location-section {
    background-color: rgba(255,255,255,0.02);
}

.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: center;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    height: 400px;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.location-details p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.location-info {
    margin: 2rem 0;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Signup Form Styles */
.signup-form-container {
    margin-top: 6rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.signup-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.2), rgba(58, 12, 163, 0.2));
    z-index: -1;
}

.signup-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.signup-form-wrapper h2 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.signup-form-wrapper p {
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(76, 201, 240, 0.3);
}

.form-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.submit-btn {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #3a9fc0;
    box-shadow: 0 4px 10px rgba(76, 201, 240, 0.3);
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: rgba(0,0,0,0.3);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.footer-column p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-link:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .setup, .location-content {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 4rem 0;
    }
}