@charset "UTF-8";
/* CSS Document */
/* Comedy Page Styles */

/* Strike Section */
.strike {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 100px;
}

/* Splide Slider Styles */
#image-carousel .splide__pagination {
    margin-bottom: 1.5rem;
    margin-left: 60rem;
}

#image-carousel .splide__pagination__page {
    width: 30px;
    height: 5px;
    background-color: #fff;
    margin: 0 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#image-carousel .splide__pagination__page.is-active {
    background-color: #00abc8;
}

.splide__arrow svg {
    fill: #1d242d;
    height: 2em;
    transition: fill 0.2s linear;
    width: 2.5em;
}

.main_splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Worked Section */
.worked {
    background-color: #ddd;
}

/* Logo Slider */
.slider .img_ {
    height: 211px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.slider .img_ img {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
}
/* ========== RECAPTCHA CONTACT FORM STYLES ========== */
:root {
    --ece-red: #F89921;
    --ece-dark: #2F2F2F;
    --ece-light: #f8f9fa;
}

.logged-in-form {
    background: var(--ece-light);
    padding: 60px 0;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

.form-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ece-dark);
    margin: 2rem 0 1.5rem;
    text-align: center;
}

.form-label {
    font-weight: 600;
    color: var(--ece-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--ece-red);
    box-shadow: 0 0 0 0.2rem rgba(248, 153, 33, 0.15);
}

.required-indicator {
    color: var(--ece-red);
    font-weight: 700;
}

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.btn-submit {
    background: var(--ece-red);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.4s ease;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(248, 153, 33, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-loading {
    position: relative;
    opacity: 0.7;
}

.form-loading .btn-submit {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .strike {
        margin: 0 20px;
    }
    
    #image-carousel .splide__pagination {
        margin-left: 14rem;
    }

    #image-carousel .splide__pagination__page {
        width: 15px;
        height: 3px;
    }

    #splide_slider .splide__arrow.splide__arrow--prev {
        left: 85%;
    }
}

@media screen and (max-width: 600px) {
    .strike {
        margin: 0 10px;
    }
    
    #image-carousel .splide__pagination {
        margin-left: 0;
        justify-content: center;
    }
}
