/* Base Styles */
:root {
    --background: #141414;
    --text: #ffffff;
    --primary: #1d72b8;
    --secondary: #6dd5ed;
    --accent: #ffd700;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(31, 38, 135, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(90deg, #fff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.price {
    font-size: 2rem;
    color: var(--secondary);
    margin: 20px 0;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
}

.section-title {
    text-transform: lowercase;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.section-title::first-letter {
    text-transform: uppercase;
}

.leadership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.leadership-card {
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

/* Clothing Section */
.clothing-section {
    padding: 100px 0;
}

.clothing-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    border-radius: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
/* Global Link Styles */
a {
    text-decoration: none;
}

/* Button Base Styles */
.cta-btn,
.discord-btn,
.showcase-text-link,
button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Button Hover Effects */
.cta-btn:hover,
.discord-btn:hover,
.showcase-text-link:hover,
button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.15);
}

/* Active/Pressed State */
.cta-btn:active,
.discord-btn:active,
.showcase-text-link:active,
button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/* Hero Button Specific Styles */
.hero-btn {
    font-size: 1.2rem;
    padding: 16px 48px;
    background: rgba(109, 213, 237, 0.2);
    border: 1px solid rgba(109, 213, 237, 0.3);
}

/* Navigation Links */
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 6px 2px;
}

/* Optional: Subtle hover effect for nav links */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Contact Links */
.contact-details a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
}

.contact-details a:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: transparent;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: left;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-grid blockquote {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 20px;
    border-radius: 8px;
    margin: 0;
    transition: transform 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.testimonials-grid blockquote:hover {
    transform: translateX(10px);
}

/* Stars Container */
.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

/* Star Symbol */
.star {
    color: #ffffff;
    font-size: 18px;
}

/* Testimonial Text */
blockquote {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    font-style: normal;
}

/* Author Citation */
blockquote cite {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-left: 8px;
}

/* Container width adjustment */
.testimonials-section .container {
    max-width: 1200px;
    width: 95%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .testimonials-grid blockquote {
        padding: 15px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-toggle {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px; /* Adjust based on your navbar height */
        left: 0;
        right: 0;
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links.open {
        display: flex;
        animation: slideIn 0.3s ease-out;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem;
        width: 100%;
    }
}

/* Animation for mobile menu */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Active state for nav links */
.nav-links a.active {
    color: var(--secondary);
}

/* Common Section Styles */
.section-dark {
    padding: 60px 0;
    text-align: left;
}

.section-dark h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-dark p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Glass Button Style */
.glass-button {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Contact Section Specific */
.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Footer Styles */
.site-footer {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #ffffff;
    font-size: 1rem;
    text-align: left;
    opacity: 0.8;
}

/* Container Adjustments */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-dark {
        padding: 40px 0;
    }

    .section-dark h2 {
        font-size: 2rem;
    }

    .section-dark p {
        font-size: 1rem;
    }

    .glass-button {
        width: 100%;
        text-align: center;
    }
}

/* Additional Spacing Utilities */
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }

/* Navbar Base */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Fixed height */
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

/* Container for navbar content */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hamburger Menu Button */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* Navbar with Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navigation Links with Glassmorphism hover effect */
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Hero Section Spacing */
.hero {
    padding: 180px 0 100px;
    margin-bottom: 0;
}

/* About Section Spacing */
.about-section {
    padding: 120px 0; /* Increased padding */
    margin-top: 60px; /* Added margin top */
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

.about-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Navigation with Glassmorphism */
@media (max-width: 768px) {
    .nav-links {
        background: rgba(20, 20, 20, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-section {
        padding: 80px 0;
        margin-top: 40px;
    }
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    text-align: center;
}

.statistics-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.statistics-card {
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statistics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
}

.statistics-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.statistic-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6dd5ed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .statistics-grid {
        grid-template-columns: 1fr;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
}

header {
    background-color: #2a2a2a;
    padding: 1rem 0;
    border-bottom: 3px solid #5ba3d0;
}

.navbar-container {
    max-width: 1200px;
    margin:  0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight:  bold;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    background:  none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar a:hover {
    color: #5ba3d0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background-color: #1a1a1a;
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-top: 1px solid #5ba3d0;
    }

    .navbar. active {
        display: flex;
    }

    .navbar a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-bottom: 1px solid #333;
        text-align: center;
    }

    .navbar a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }

    . navbar a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .menu-toggle {
        font-size: 1.3rem;
    }
}