/* Custom Polish for KOAC Public Site */
:root {
    --oxpins-font-size-base: 16px;
    --oxpins-line-height-base: 1.7;
}

body {
    font-size: var(--oxpins-font-size-base);
    line-height: var(--oxpins-line-height-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Section Spacing */
.about-one, .about-four, .events-one, .team-one, .contact-three, .contact-one, .feature-two {
    padding: 100px 0 !important;
}

@media (max-width: 767px) {
    .about-one, .about-four, .events-one, .team-one, .contact-three, .contact-one, .feature-two {
        padding: 60px 0 !important;
    }
}

/* Section Titles Alignment */
.section-title {
    margin-bottom: 50px;
}

.section-title__title {
    font-size: 42px;
    line-height: 52px;
    font-weight: 800;
}

/* Navigation Alignment */
.main-menu__list > li {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.main-menu__list > li > a {
    padding: 10px 0 !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Login CTA Polish */
.main-menu__btn {
    padding: 12px 25px !important;
    border-radius: 20px !important;
    border: 2px solid #f16f23 !important;
    margin-right: 20px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(241, 111, 35, 0.2);
}

.main-menu__btn:hover {
    background-color: #283734 !important;
    border-color: #283734 !important;
    color: #fff !important;
/*    transform: translateY(-2px);*/
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Slimmer sticky header */
.stricky-header .main-menu__list > li {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.stricky-header .main-menu__btn {
    padding: 8px 20px !important;
}

/* Responsive Font Sizes */
@media (max-width: 1199px) {
    .section-title__title {
        font-size: 34px;
        line-height: 44px;
    }
}

/* Footer Polish */
.site-footer__top {
    padding: 90px 0 50px;
}

.footer-widget__title {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
}

.footer-widget__links-list li + li {
    margin-top: 10px;
}

/* Card Improvements */
.team-one__single, .events-one__single {
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-one__single:hover, .events-one__single:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-one__img img, .events-one__img img {
    object-fit: cover;
    height: 350px !important;
    width: 100% !important;
}

/* Reduced height for other committee members carousel */
.team-carousel-page .team-one__img img {
    height: 220px !important;
}

.team-carousel-page .team-one__content {
    padding: 15px 10px;
}

.team-carousel-page .team-one__name {
    font-size: 16px;
    margin-bottom: 5px;
}

.team-carousel-page .team-one__sub-title {
    font-size: 13px;
}

/* Button Refinement */
.thm-btn {
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 30px !important;
    border: 2px solid #f16f23 !important;
    transition: all 0.3s ease !important;
}

.thm-btn:hover {
    background-color: #283734 !important;
    border-color: #283734 !important;
    color: #fff !important;
}

/* Global Form Polish */
input[type="text"], input[type="email"], input[type="tel"], input[type="date"] input[type="password"], input[type="number"], select, textarea {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 15px;
    width: 100%;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #f16f23 !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(241, 111, 35, 0.1);
}

.contact-form__input-box {
    margin-bottom: 20px;
}

.contact-form__input-box input, .contact-form__input-box textarea {
    border-radius: 25px !important;
    padding: 15px 25px !important;
    background-color: #f7f7f7 !important;
    border: 1px solid #eee !important;
}

.contact-form__input-box textarea {
    border-radius: 20px !important;
}

.main-menu__btn:before {
    content: "";
    position:unset !important;
}