/* Root Variables */
:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --accent-blue: #3b82f6;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --price-accent: #22c55e;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
nav {
    padding: 2rem;
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(15, 23, 42, 0.0);
    backdrop-filter: blur(10px);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.discord-nav {
    background: #5865F2;
}

.discord-nav:hover {
    background: #4752c4;
}

.logo {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #0f172a, #1a2642, #0f172a, #1a2642);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.floating-logo {
    position: absolute;
    width: 200px;
    height: 200px;
    top: calc(10% + 50px);
    left: calc(10% + 50px);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero::before, .hero::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.hero::before {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    bottom: 15%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 2rem;
    max-width: 1200px;
    margin: 2rem auto 4rem;
    border-radius: 0 8px 8px 0;
}

.disclaimer-section h2 {
    color: #ef4444;
    margin-bottom: 1rem;
}

.disclaimer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Discord Link */
.discord-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #5865F2;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.discord-link:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
}

.discord-link svg {
    margin-right: 0.75rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.service-card:hover {
    transform: translateY(-5px);
}

.time-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    color: var(--price-accent);
    margin: 1rem 0;
    font-weight: bold;
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-wrapper {
    margin-top: auto;
}

.btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-blue);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-blue);
}

.footer-link svg {
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    gap: 2rem;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Additional Elements */
.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 70%);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}
/* FAQ Page */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

.faq-section h1 {
    margin-bottom: 3rem;  
}

.faq-item {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

/* Reviews Page */
.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews-section h1 {
    margin-bottom: 3rem;
}

.reviewer-name {
    font-weight: bold;
    color: var(--accent-blue);
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Request Build Form */
.form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

.build-form {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    background: var(--bg-dark);
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-section h1 {
    margin-bottom: 3rem;
}
.submit-btn {
    background: var(--accent-blue);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}
/* Hamburger Menu Styles */
.hamburger {
    display: none; /* Hide by default on desktop */
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .hamburger {
        display: flex; /* Show on mobile */
    }

    .nav-links {
        display: none; /* Hide nav links by default on mobile */
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .floating-logo {
        opacity: 0.2;
    }

    .nav-links.active {
        display: flex; /* Show nav links when active */
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }
}