/* Custom Styles for MCP Server Marketing Site */

/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Hero Section with Fullscreen Animation */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#particles-js {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.hero-section h1 {
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.hero-section .btn-primary {
    background-color: #007bff;
    border: none;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.7);
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 1);
}

.navbar-brand {
    font-size: 1.5rem;
    color: #007bff !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #007bff !important;
    transform: translateY(-2px);
}

/* Section Styling */
section {
    position: relative;
    overflow: hidden;
}

.section-divider {
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #007bff, #00b7ff);
    margin-bottom: 2rem;
}

h2 {
    font-weight: 700;
    letter-spacing: -1px;
}

.text-primary {
    color: #007bff !important;
}

/* Cards */
.card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.border-primary {
    border-color: rgba(0, 123, 255, 0.5) !important;
}

/* Form Inputs */
.form-control {
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    color: #fff;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    animation: fadeInUp 1s ease-out;
}

.animate__fadeInDown {
    animation: fadeInDown 1s ease-out;
} 