/* Landing Page Styles */
body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.hero-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%231a1a1a;stop-opacity:1" /><stop offset="100%" style="stop-color:%232d2d2d;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23grad1)"/><circle cx="200" cy="200" r="100" fill="%23ff6b35" opacity="0.1"/><circle cx="1000" cy="600" r="150" fill="%23ff6b35" opacity="0.05"/><circle cx="600" cy="400" r="80" fill="%23ff6b35" opacity="0.08"/></svg>');
    background-size: cover;
    background-position: center;
}

.fixed-left {
    position: relative;
    left: 0;
    top: 0;
    height: auto;
    min-height: 100vh;
    width: 100% !important;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.scrollable-right {
    margin-left: 0 !important;
    min-height: 100vh;
    width: 100% !important;
}

.cricket-player-bg {
    background-image: url('/images/banner/ucan-homepage-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Navbar Styles */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-bottom: 1px solid #374151;
    padding: 1rem;
    z-index: 50;
}

/* Hero Text Styles */
.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 3.75rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* Left Banner Header */
.left-banner-header {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Layout Enforcement */
body {
    overflow-x: hidden;
}

.container-50-50 {
    display: flex;
    width: 100%;
    height: 100vh;
}

.left-half {
    width: 100% !important;
    position: relative;
    left: 0;
    top: 0;
    height: auto;
    min-height: 100vh;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.right-half {
    width: 100% !important;
    margin-left: 0 !important;
    min-height: 100vh;
    overflow-y: auto;
}

/* Button Styles */
.btn-primary {
    background-color: #dc2626;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #b91c1c;
}

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Form Styles */
.form-input {
    width: 100%;
    background-color: #1f2937;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid #374151;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.form-input:focus {
    border-color: #dc2626;
    outline: none;
}

.form-label {
    display: block;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

/* Card Styles */
.card {
    background-color: #111827;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #374151;
    transition: border-color 0.3s ease;
}

.card:hover {
    border-color: #dc2626;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fixed-left {
        position: relative;
        width: 100%;
        height: 50vh;
    }
    
    .scrollable-right {
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Custom Utilities */
.text-inter {
    font-family: 'Inter', sans-serif;
}

.font-bold-italic {
    font-weight: 700;
    font-style: italic;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Program Card Animations */
.program-card {
    transition: all 0.3s ease;
}

.program-card.fade-in {
    animation: slideInUp 0.4s ease-out;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fixed-left .text-center {
    bottom: 10%;
}

nav {
    -webkit-box-shadow: 0px 0px 16px 6px rgba(0, 85, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9em;
    background-color: #000000;
    padding: 0.5em 0;
}

@media (min-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }
}

.left-banner-text {
    position: absolute;
    bottom: 0% !important;
    text-align: center;
    justify-content: center;

    margin: 0 auto;
}

.left-banner-text h1 {
    font-size: 2.5rem;
}

.left-banner-text p {
    font-size: 1.4rem;
}


#programs {
    padding-top: 2em;
}

.nav-logo {
    padding: 0.2em 0 0em 0;
}

.link-primary {
    font-size: 1.1em;
    margin: 0 1em;
}

/* Jersey Selection - Disabled Options */
select option:disabled {
    opacity: 0.3;
    text-decoration: line-through;
    color: #6b7280 !important;
    background-color: #1f2937;
    cursor: not-allowed;
}