* {
    padding: 0;
    margin: 0;
    font-family: 'Calibri', sans-serif;
}

@font-face {
    font-family: 'Calibri';
    src: url('/assets/fonts/calibri-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('/assets/fonts/calibri-bold.ttf') format('truetype');
    font-weight: 700;
}

.btn_solid {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    background-color: #82b4d5;
    border: 1px solid #82b4d5;
    border-radius: 8px;
    height: 44px;
    color: #ffff;
}

.btn_bordered {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 8px;
    height: 44px;
    color: #000000;
}

.container {
    max-width: 1200px !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
}

.header {
    background-color: #ffff;
    padding: 16px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.lang-switch .btn {
    padding: 0 12px;
    height: 40px;
    border: 1px solid #000000;
    background-color: transparent;
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .lang-switch .btn:focus,
    .lang-switch .btn:hover {
        background-color: #000000;
        color: #ffff;
    }

.home {
    padding-bottom: 40px;
}

.main_banner {
    width: 100%;
    height: auto;
}

.banner {
    border-radius: 16px;
    background-color: #ffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

    .banner img {
        width: 100%;
        height: auto;
        border-radius: 16px 16px 0 0;
    }

    .banner .content {
        margin-top: 40px;
        padding: 24px 16px;
        text-align: center;
    }

        .banner .content h3 {
            font-weight: 700;
            font-size: 20px;
            line-height: 28px;
            color: #000000;
            margin: 0;
        }

.event_detail {
    background-color: #f4f8f9;
    border-radius: 16px;
    padding: 40px 32px;
}

    .event_detail .details .img-container {
        background-color: #f0e4e5;
        border-radius: 50%;
        height: 32px;
        width: 32px;
    }

        .event_detail .details .img-container svg,
        .event_detail .details .img-container img {
            height: 20px;
            width: 20px;
        }

    .event_detail .details h6 {
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
        color: #cf3030 !important;
        margin-bottom: 0;
    }

    .event_detail .details p,
    .event_detail .details a,
    .event_decs p {
        font-size: 14px;
        color: #000000;
        font-weight: 400;
    }

    .event_detail .left-content {
        max-width: 400px;
    }

.guest_detail_form {
    background-color: #ffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    padding: 24px 16px;
    border-radius: 16px;
}

.event_decs .decs {
    border-radius: 16px;
    background-color: #ffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    padding: 24px 16px;
}

    .event_decs .decs p {
        line-height: normal;
        font-size: 20px;
        font-weight: 400;
    }

.guest_detail_form h3,
.event_decs h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    color: #000000;
    margin-bottom: 0;
}

.guest_detail_form form {
    margin-top: 24px;
}

.guest_detail_form .form-group {
    margin-bottom: 16px;
}

    .guest_detail_form .form-group label,
    .form-switch label {
        font-size: 16px;
        margin-top: 6px;
        font-weight: 500;
        color: #000000;
    }

    .guest_detail_form .form-group .form-control {
        padding: 10px 14px;
        border: 1px solid #e8e6e9;
        background-color: #ffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
        box-shadow: none;
        font-size: 14px;
        font-weight: 500;
        color: #000000;
        border-radius: 8px;
        height: 46px;
        overflow: hidden;
    }

.guest_detail_form .form-check-input {
    height: 24px;
    width: 48px;
    border: 1px solid #e8e6e9;
    box-shadow: none;
}

    .guest_detail_form .form-check-input:checked {
        background-color: #82b4d5;
        border-color: #82b4d5 !important;
    }

.divider {
    height: 1px;
    width: 100%;
    background-color: #000000;
    opacity: 80%;
    margin: 32px 0;
}

@media (min-width: 767px) {
    .divider {
        height: 100%;
        width: 1px;
        background-color: #000000;
        opacity: 80%;
        margin: 0;
    }
}

.event_decs {
    padding-block: 40px;
}

.guestrow {
    background-color: #ffff;
    border-radius: 16px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
}

    .guestrow.show {
        max-height: fit-content;
        opacity: 1;
        pointer-events: auto;
        padding: 24px 14px;
        margin-bottom: 24px;
    }

    .guestrow .btn_bordered {
        background-color: #000000 !important;
        color: #ffff !important;
    }

.faqs h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    margin-bottom: 16px;
}

.accordion-item {
    border: 1px solid #ffff !important;
    padding: 16px;
    border-radius: 16px !important;
    margin-bottom: 16px;
    background-color: #ffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.accordion-button {
    padding: 0;
    background-color: transparent !important;
    box-shadow: none !important;
    font-size: 20px;
    font-weight: 500;
    color: #82b4d5 !important;
}

.accordion-body {
    margin-top: 20px;
    border-top: 1px solid #e8e6e9;
    padding: 20px 0 0 0;
    font-size: 16px;
    line-height: normal;
    color: #000000;
    font-weight: 500;
}

.footer {
    background-color: #333333;
    padding: 16px 0;
}

.copyright {
    font-size: 16px;
    color: #ffff;
}

@media (max-width:575px) {
    .banner .content h3 {
        font-size: 16px;
        line-height: normal;
    }

    .guest_detail_form h3,
    .event_decs h3 {
        font-size: 20px;
    }

    .event_detail {
        padding: 24px 16px;
    }
}


[dir="rtl"] .accordion-button::after {
    margin-left: unset !important;
    margin-right: auto !important;
}

[dir="rtl"] .event_detail .details h6,
[dir="rtl"] .event_detail .details p,
[dir="rtl"] .event_detail .details a,
[dir="rtl"] .event_decs p,
[dir="rtl"] .guest_detail_form .form-group label,
[dir="rtl"] .form-switch label {
    font-size: 18px;
}

[dir="rtl"] .guest_detail_form h3,
[dir="rtl"] .event_decs h3 {
    font-size: 28px;
}
