/* Consistent Coming Soon Styles - Modern Design */

/* Desktop Styles */
.coming-soon-section {
    min-height: calc(60vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    padding: 80px 20px;
    margin-top: 180px; /* Account for nav bar height */
    position: relative;
    overflow: hidden;
}

/* Decorative background element */
.coming-soon-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(50, 78, 138, 0.03) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.coming-soon-section::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(50, 78, 138, 0.03) 0%, transparent 70%);
    transform: rotate(-45deg);
    pointer-events: none;
}

.coming-soon-title {
    font-size: 64px;
    background: linear-gradient(135deg, #324e8a 0%, #5a7bbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    margin: 0;
    position: relative;
    z-index: 1;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Ensure consistent spacing with contact section */
.coming-soon-section + .contact-section {
    padding-top: 60px;
    background: #ffffff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Hide desktop navigation on mobile */
    .navbar.desktop-only {
        display: none !important;
    }
    
    /* Mobile coming soon section */
    .coming-soon-section {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 60px; /* Space for bottom nav */
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        z-index: 1;
    }
    
    .coming-soon-title {
        font-size: 36px;
        color: #324e8a;
        font-weight: 600;
        margin: 0;
        padding: 20px;
        font-family: 'Poppins', sans-serif;
        letter-spacing: -0.5px;
        background: none;
        -webkit-text-fill-color: #324e8a;
    }
    
    /* Remove desktop decorations on mobile */
    .coming-soon-section::before,
    .coming-soon-section::after,
    .coming-soon-title::after {
        display: none;
    }
    
    /* Hide contact section on mobile for all coming soon pages except contact page */
    body:not([data-page="contact"]) .coming-soon-section + .contact-section {
        display: none;
    }
    
    /* Special styling for contact page on mobile */
    body[data-page="contact"] .coming-soon-section {
        bottom: 60px;
        height: auto;
        min-height: 200px;
        padding: 40px 20px;
    }
    
    body[data-page="contact"] .coming-soon-section + .contact-section {
        position: relative;
        bottom: auto;
        background: #f8f9fa;
        padding: 40px 20px 80px;
        text-align: center;
        border-top: 1px solid #e9ecef;
    }
    
    body[data-page="contact"] .coming-soon-section + .contact-section h2 {
        display: block;
        font-size: 24px;
        margin-bottom: 20px;
        color: #324e8a;
    }
    
    body[data-page="contact"] .coming-soon-section + .contact-section .contact-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0;
    }
    
    body[data-page="contact"] .coming-soon-section + .contact-section .contact-label {
        display: block;
        font-size: 14px;
        color: #6c757d;
        margin-bottom: 4px;
    }
    
    body[data-page="contact"] .coming-soon-section + .contact-section .contact-value {
        font-size: 16px;
        color: #324e8a;
        font-weight: 600;
    }
    
    body[data-page="contact"] .coming-soon-section + .contact-section .footer-bottom {
        display: none;
    }
    
    /* Ensure main takes full height on mobile */
    main:has(.coming-soon-section) {
        height: 100%;
        padding: 0;
        margin: 0;
    }
    
    /* Reset body padding for coming soon pages */
    body:has(.coming-soon-section) {
        padding-top: 0 !important;
    }
}

/* Scrimmages Content Styling */
.scrimmages-content {
    margin-top: 50px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scrimmages-content p {
    font-size: 20px;
    color: #324e8a;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.register-section {
    margin-top: 30px;
}

.register-link {
    background: linear-gradient(135deg, #324e8a 0%, #5a7bbf 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 16px rgba(50, 78, 138, 0.2);
}

.register-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(50, 78, 138, 0.3);
    background: linear-gradient(135deg, #2a3f6e 0%, #4a6ba8 100%);
}

.scrimmages-page-title {
    font-size: 36px;
    color: #324e8a;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

/* Desktop Contact Page Styles */
.desktop-contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.desktop-questions-section {
    margin-bottom: 40px;
    text-align: center;
}

.desktop-questions-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #324e8a;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.desktop-faq-link {
    display: inline-block;
    background-color: #324e8a;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.desktop-faq-link:hover {
    background-color: #2a3f6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 78, 138, 0.3);
}

.desktop-contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.desktop-contact-form h2 {
    font-size: 28px;
    font-weight: 700;
    color: #324e8a;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.desktop-contact-form .form-group {
    margin-bottom: 20px;
}

.desktop-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.desktop-contact-form input,
.desktop-contact-form select,
.desktop-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.desktop-contact-form input:focus,
.desktop-contact-form select:focus,
.desktop-contact-form textarea:focus {
    outline: none;
    border-color: #324e8a;
}

.desktop-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.desktop-contact-form .form-submit-btn {
    background-color: #324e8a;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.desktop-contact-form .form-submit-btn:hover {
    background-color: #2a3f6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 78, 138, 0.3);
}

/* Location section styles */
.location-section {
    margin-bottom: 40px;
    text-align: center;
}

.location-label {
    font-size: 24px;
    background: linear-gradient(135deg, #324e8a 0%, #5a7bbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.location-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: inline-block;
    border: 2px solid #e8eaf0;
    transition: all 0.3s ease;
    position: relative;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #324e8a;
}

.location-name {
    font-size: 24px;
    color: #324e8a;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.scrimmages-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.detail-item {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #324e8a;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.detail-item p {
    font-size: 20px;
    color: #324e8a;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-item p::before {
    content: "•";
    font-size: 24px;
    color: #5a7bbf;
}

/* Desktop-specific styling for scrimmages */
@media (min-width: 769px) {
    .scrimmages-content {
        max-width: 600px;
        margin: 0 auto;
        padding: 40px;
        margin-top: 20px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scrimmages-content p {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .register-link {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    /* Mobile location card adjustments */
    .location-label {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .location-card {
        padding: 20px 30px;
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        border-radius: 10px;
    }
    
    .location-name {
        font-size: 20px;
    }
    
    .scrimmages-details {
        gap: 12px;
        padding: 0 10px;
    }
    
    .detail-item {
        padding: 16px 24px;
        border-left-width: 3px;
    }
    
    .detail-item p {
        font-size: 16px;
        font-weight: 500;
    }
    
    .detail-item p::before {
        font-size: 20px;
    }
    
    .register-section {
        margin-top: 24px;
    }
    
    .register-link {
        padding: 16px 32px;
        font-size: 14px;
    }
    
    /* Shift content upward on mobile */
    .coming-soon-section {
        padding: 40px 20px;
        margin-top: 140px;
    }
    
    .scrimmages-page-title {
        margin-bottom: 10px;
    }
    
    /* Fix for scrimmages page on mobile */
    body:has(.scrimmages-page-title) .coming-soon-section {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        height: auto !important;
        min-height: auto !important;
        background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%) !important;
        margin-top: 0;
        padding-top: 20px;
    }
}
