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

body {
    font-family: 'Roboto', sans-serif;
   background: radial-gradient(circle at top, #4b0fbf, #12001f 70%);
    color: #e6e6e6;
    line-height: 1.6;
}

/* Navbar */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(20, 10, 30, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(180, 160, 255, 0.25);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
   color: #a855ff;
    text-shadow: 0 0 12px rgba(185, 140, 255, 0.8);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #e6e6e6;
    text-decoration: none;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b98cff, #cfd2d6);
    transition: width 0.3s ease;
}

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

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(20, 0, 40, 0.7), rgba(5, 0, 10, 0.95)),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e') center/cover no-repeat;
    text-align: center;

    background:
    linear-gradient(
        rgba(75, 15, 191, 0.35),
        rgba(10, 0, 30, 0.75)
    ),
    url('https://images.unsplash.com/photo-1542751371-adc38448a05e') center/cover no-repeat;
}



.hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d1b3ff;
    text-shadow: 0 0 25px rgba(185, 140, 255, 0.9);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #cfcfcf;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #b98cff, #d6d6d6);
    color: #120015;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(185, 140, 255, 0.8);
}
.btn {
    background: linear-gradient(135deg, #6c00dfbb, #e0e0e0);
}
.btn:hover {
    box-shadow: 0 0 30px rgba(83, 10, 160, 0.9);
}


/* Sections */
.section {
    max-width: 1000px;
    margin: auto;
    padding: 4rem 2rem;
}

.section h2 {
    color: #9f5cff;
}


.section.dark {
    background: linear-gradient(135deg, #120018, #07000a);
    border-top: 1px solid rgba(200, 200, 220, 0.15);
    border-bottom: 1px solid rgba(200, 200, 220, 0.15);
}

/* Membership */
.membership {
    list-style: none;
    display: grid;
    gap: 1rem;
    font-size: 1.1rem;
}

.membership li {
    background: rgba(255,255,255,0.04);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(190, 180, 220, 0.3);
    box-shadow:
        inset 0 0 20px rgba(185, 140, 255, 0.1),
        0 0 10px rgba(200, 200, 220, 0.05);
}

/* Form */
.contact-form {
    max-width: 500px;
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.contact-form label {
    font-size: 0.9rem;
    color: #bdbdbd;
}

.contact-form input,
.contact-form textarea {
    padding: 0.7rem 1rem;
    background: rgba(10, 0, 15, 0.7);
    border: 1px solid rgba(185, 140, 255, 0.4);
    border-radius: 8px;
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 12px rgba(185, 140, 255, 0.7);
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background: #050007;
    font-size: 0.9rem;
    color: #a8a8a8;
}

.made-by {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #cfcfcf;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(185, 140, 255, 0.6);
}

