/* CSS Document */

/* 
========================================================
FILE: style.css
Place inside: /wp-content/themes/neon-landing/style.css
========================================================
*/

/*
Theme Name: Neon Landing
Theme URI: https://example.com
Author: Your Name
Description: Basic single-page Bootstrap landing theme with modern gradient background.
Version: 1.0
*/

html,
body {
    height: 100%;
    margin: 0;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

body {
    background: linear-gradient(
        135deg,
        #120018 0%,
        #2a0a52 30%,
        #3b1fa3 60%,
        #0066ff 100%
    );
    color: #ffffff;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.btn-custom {
    background: linear-gradient(135deg, #7b2ff7, #00c6ff);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-card {
        padding: 40px 24px;
    }
}