/* css/style.css - Complete redesign */

/* Home Page Styles (keeping your existing design) */
.home-page {
    background: linear-gradient(145deg, #ffffff 0%, #f5f3ff 100%);
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

.hero-section {
    min-height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(245, 179, 66, 0.05) 0%, transparent 30%);
}

.logo-wrapper {
    animation: fadeInDown 1s ease;
}

.falcon-icon {
    width: 120px;
    height: 120px;
    background: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 20px 30px -10px rgba(245, 179, 66, 0.3);
    border: 3px solid #f5b342;
}

.falcon-icon i {
    font-size: 3.5rem;
    color: #f5b342;
    animation: pulse 2s infinite;
}

.brand-name {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a2e, #2a2a3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.brand-name2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a2e, #2a2a3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.brand-name span {
    background: linear-gradient(135deg, #f5b342, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-name2 span {
    background: linear-gradient(135deg, #f5b342, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.home-logo{
    width: 25%;
}
.slogan-logo{
    width: 35%;
}

.sponsor-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(245, 179, 66, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(245, 179, 66, 0.3);
    font-size: 1.2rem;
    color: #333;
}

.sponsor-badge i {
    color: #f5b342;
    font-size: 1.4rem;
}

.sponsor-badge strong {
    color: #1a1a2e;
    font-weight: 700;
}

.slogan {
    font-size: 2rem;
    font-weight: 300;
    color: #4a4a5a;
    margin: 30px 0;
}

.slogan i {
    color: #f5b342;
    margin: 0 15px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #1a1a2e;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    border: 2px solid #f5b342;
    transition: all 0.3s ease;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.3);
}

.btn-cta:hover {
    background: #2a2a3a;
    transform: translateY(-5px);
    box-shadow: 0 30px 40px -10px #f5b342;
    color: white;
}

.btn-cta i {
    color: #f5b342;
    font-size: 2rem;
}

.note {
    color: #6b6b8b;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Order Page Styles - Redesigned */
.order-page {
    background: #f8fafc;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

/* Order Card */
.order-card {
    background: white;
    border-radius: 32px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Size Guide Hint */
.size-guide-hint .btn-link {
    color: #4a5568;
    font-weight: 500;
}

.size-guide-hint .btn-link:hover {
    color: #f5b342;
}

.size-guide-panel {
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e9eef2;
    overflow: hidden;
}

.size-guide-panel .nav-tabs {
    background: #f1f5f9;
    padding: 10px 10px 0;
    border-bottom: none;
}

.size-guide-panel .nav-tabs .nav-link {
    border: none;
    padding: 10px 20px;
    color: #4a5568;
    border-radius: 12px 12px 0 0;
}

.size-guide-panel .nav-tabs .nav-link.active {
    background: white;
    color: #f5b342;
    font-weight: 600;
}

.size-table {
    margin-bottom: 0;
}

.size-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 2px solid #f5b342;
}

.size-table td {
    padding: 6px 8px;
    font-size: 0.9rem;
}

/* Person Card - Modern Design */
.person-card {
    background: white;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    overflow: hidden;
}

.person-card:hover {
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
    border-color: #f5b342;
}

.person-card-header {
    background: #f8fafc;
    padding: 20px 25px;
    border-bottom: 1px solid #eef2f6;
}

.person-card-body {
    padding: 25px;
}

/* Form Elements */
.input-group-text {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.form-control, .form-select {
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: #f5b342;
    box-shadow: 0 0 0 3px rgba(245, 179, 66, 0.1);
}

.form-label {
    font-weight: 500;
    color: #334155;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Add Athlete Button */
.btn-add-athlete {
    background: white;
    border: 2px dashed #cbd5e1;
    color: #64748b;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}



/* Order Summary */
.order-summary {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    border: 1px solid #e9eef2;
}

.btn-submit-order {
    background: #1a1a2e;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #f5b342;
}

.btn-submit-order:hover {
    background: #2a2a3a;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px #f5b342;
}

/* Size Hint */
.size-hint .alert {
    border-radius: 12px;
    background: #fffbeb;
}

/* Radio Buttons */
.form-check-input:checked {
    background-color: #f5b342;
    border-color: #f5b342;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }
    .brand-name2 {
        font-size: 2rem;
    }
    .home-logo{
        width: 40% !important;
    }
    
    .slogan {
        font-size: 1.5rem;
    }
    .slogan-logo{
        width: 55%;
    }
    
    .btn-cta {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .person-card-header {
        padding: 15px 20px;
    }
    
    .person-card-body {
        padding: 20px;
    }
}





/* Hover state */
.sleeve-select:hover {
    border-color: #f5b342;
    background-color: #fffaf0;
}

/* Focus state */
.sleeve-select:focus {
    border-color: #ddd;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(245, 179, 66, 0.1);
}

/* Style the select2 container if you're using it */
.select2-container--default .select2-selection--single {
    border: 1px solid #e2e8f0;
    padding: 8px 15px;
    border-radius: 10px;
    height: 46px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    color: #334155;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 10px;
}

/* Add to your style.css */

/* Style for select placeholder */
select option[value=""][disabled] {
    color: #999;
    font-style: italic;
}

/* Style for select when no value selected */
select:invalid {
    color: #999;
}

/* Style for select when value selected */
select:valid {
    color: #334155;
}

/* Ensure select2 has proper styling */
.select2-container--default .select2-selection--single {
    border: 1px solid #e2e8f0;
    padding: 8px 15px;
    border-radius: 10px;
    height: 46px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    color: #334155;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
    font-style: italic;
}

/* Add to your style.css */
.form-check-input:checked {
    background-color: #f5b342;
    border-color: #f5b342;
}

.form-check-input:focus {
    border-color: #f5b342;
    box-shadow: 0 0 0 0.25rem rgba(245, 179, 66, 0.25);
}

.d-flex.align-items-center {
    gap: 10px;
}

#pants_group_${index} {
    transition: all 0.3s ease;
}

/* Add to your style.css */
input:disabled, select:disabled {
    background-color: #e9ecef;
    opacity: 0.7;
    cursor: not-allowed;
}

#pants_group_${index} {
    transition: all 0.3s ease;
}

