/* Custom CSS for Steve Skolozdra Landing Page */

:root {
    --bs-dark: #000000;
    --bs-primary: #0d6efd;
    --bs-light: #ffffff;
    --gradient-start: #ffffff;
    --gradient-end: #999999;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
}

/* Make all text non-selectable by default */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Navbar Styles */
.navbar {
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    opacity: 0.9;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.nav-link {
    font-size: 1.125rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: radial-gradient(ellipse at center, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(to bottom, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

/* Button Styles */
.btn-light {
    background-color: #ffffff;
    color: #000000;
    border: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: fadeIn 0.8s ease-out;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .display-1 {
        font-size: 3.5rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .lead {
        font-size: 1.5rem !important;
    }
    
    .hero-section {
        padding-top: 60px;
    }
}

/* Prevent scrolling */
html {
    overflow: hidden;
    height: 100%;
}

/* Selection Styles */
::selection {
    background-color: rgba(13, 110, 253, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background-color: rgba(13, 110, 253, 0.3);
    color: #ffffff;
}