/*--------------------------------------------------------------
    # Hero Section
    --------------------------------------------------------------*/
    .hero {
        width: 100%;
        min-height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
        margin: 0;
        padding: 0;
        left: 0;
        right: 0;
    }

    html[dir="rtl"] .hero h1,
    html[dir="ltr"] .hero h1 {
        margin: 2rem 1.5rem;
        font-size: 80px;
        font-weight: 500;
    }

    @media (max-width: 767px) {

        html[dir="rtl"] .hero h1,
        html[dir="ltr"] .hero h1 {
            margin: 2rem 1.5rem;
            font-size: 60px;
            font-weight: 500;
        }

        .hero .btn-get-started {
            padding: 12px 25px;
            font-size: 14px;
        }
    }

    @media (max-width: 575px) {

        html[dir="rtl"] .hero h1,
        html[dir="ltr"] .hero h1 {
            margin: 1rem 1rem;
            font-size: 40px;
            font-weight: 500;
            text-align: center;
        }

        .hero .btn-get-started {
            margin: 0.5rem !important;
            padding: 8px 15px;
            font-size: 11px;
            min-width: 120px;
        }
    }

    .hero p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 5px 0 30px 0;
        font-size: 20px;
        font-weight: 400;
    }

    .hero .btn-get-started {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 15px 35px;
        border-radius: 50px;
        transition: all 0.4s ease;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
    }

    .hero .btn-get-started::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .hero .btn-get-started:hover::after {
        width: 200%;
        height: 200%;
    }

    .hero .btn-get-started:hover {
        color: var(--contrast-color);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

    .hero .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

    @media (max-width: 1440px) {
        .hero {
            text-align: center;
            padding: 0;
            margin: 0;
            width: 100vw;
            left: 0;
            right: 0;
            overflow: hidden;
        }

        .hero .container {
            padding: 2rem 1.5rem;
            margin: 0;
            width: 100%;
            max-width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero .row {
            margin: 0;
            width: 100%;
            justify-content: center;
            align-items: center;
        }

        .hero .col-12,
        .hero .col-lg-6 {
            padding: 4rem 1.5rem;
            margin: 0;
            width: 100%;
        }

        .hero h1 {
            margin: 1rem 1.5rem;
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.2;
        }

        .background-swiper,
        .background-swiper .swiper-wrapper,
        .background-swiper .swiper-slide {
            height: 100vh;
            width: 100vw;
            padding: 0;
            margin: 0;
        }

        .background-swiper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-buttons {
            padding: 1rem 1.5rem;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .btn-get-started {
            margin: 0.5rem;
            width: auto;
            min-width: 150px;
        }
    }

    @keyframes up-down {
        0% {
            transform: translateY(10px);
        }

        100% {
            transform: translateY(-10px);
        }
    }
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.about .book-a-table {
    text-align: center;
    border: 4px solid color-mix(in srgb, var(--default-color), transparent 30%);
    padding: 22px;
}

.about .book-a-table h3 {
    font-family: var(--default-font);
    margin: 0 0 0 0;
    font-size: 24px;
}

.about .book-a-table p {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 28px;
    margin: 0;
}

.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# offers Section
--------------------------------------------------------------*/
.offer-img {
    width: 100%;
    object-fit: contain;
    height: 200px;
    /* ارتفاع مناسب للموبايل */
}

/* للشاشات الكبيرة (كمبيوتر) */
@media (min-width: 992px) {
    .offer-img {
        height: 300px;
        /* ارتفاع أكبر للصور على الويب */
    }
}

.swiper {
    position: relative;
    padding: 60px;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    /* غير اللون حسب التصميم */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}


/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/

.book-a-table .reservation-img {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.book-a-table .reservation-form-bg {
    background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.book-a-table .php-email-form {
    padding: 30px;
}

@media (max-width: 575px) {
    .book-a-table .php-email-form {
        padding: 20px;
    }
}

.book-a-table .php-email-form input[type=text],
.book-a-table .php-email-form input[type=email],
.book-a-table .php-email-form input[type=number],
.book-a-table .php-email-form input[type=date],
.book-a-table .php-email-form input[type=time],
.book-a-table .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 20%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.book-a-table .php-email-form input[type=text]:focus,
.book-a-table .php-email-form input[type=email]:focus,
.book-a-table .php-email-form input[type=number]:focus,
.book-a-table .php-email-form input[type=date]:focus,
.book-a-table .php-email-form input[type=time]:focus,
.book-a-table .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.book-a-table .php-email-form input[type=text]::placeholder,
.book-a-table .php-email-form input[type=email]::placeholder,
.book-a-table .php-email-form input[type=number]::placeholder,
.book-a-table .php-email-form input[type=date]::placeholder,
.book-a-table .php-email-form input[type=time]::placeholder,
.book-a-table .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.book-a-table .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 14px 60px;
    transition: 0.4s;
    border-radius: 4px;
}

.book-a-table .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.book-a-table .php-email-form input[type=date] {
    direction: ltr;
    text-align: left;
}

/*--------------------------------------------------------------
# Gallery Swiper
--------------------------------------------------------------*/
.about {
    overflow: hidden;
}

.about .swiper-wrapper {
    height: auto;
}

.about .swiper-pagination {
    margin-top: 20px;
    position: relative;
    padding-top: 15px;
}

.about .swiper-pagination .swiper-pagination-bullet {
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    border: 0;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.about .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    opacity: 1;
}

.about .swiper-slide-active {
    text-align: center;
}

@media (min-width: 992px) {
    .about .swiper-wrapper {
        padding: 40px 0;
    }

    .about .swiper-slide-active {
        background: var(--background-color);
        border: 6px solid var(--accent-color);
        padding: 4px;
        z-index: 1;
        transform: scale(1.2);
        transition: none;
    }
}

/* ضبط شكل الصور داخل السلايدر */
.about .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.about .image-wrapper {
    width: 300px;
    height: 300px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
}

/* زيادة المسافة بين الصور والسلايدر */
.about .swiper-wrapper {
    padding-bottom: 20px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.flatpickr-input {
    background-image: url('https://cdn.jsdelivr.net/npm/bootstrap-icons/icons/calendar-event.svg');
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
    background-size: 1rem;
    padding-left: 2rem !important;
}

.contact .info-item {
    max-width: 100%;
    background-color: tr;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.07);
    padding: 20px 30px;
    border-radius: 12px;
    transition: background-color 0.3s;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact .info-item .icon {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    margin-inline-end: 15px;
    box-shadow: 0 2px 8px rgba(172, 140, 100, 0.3);
}

.contact .info-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: var(--default-font);
    color: var(--default-color);
}

.contact .info-item p {
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
    word-wrap: break-word;
    /* تقسم الكلمات الطويلة إلى سطور */
    word-break: break-word;
    /* متوافق مع بعض المتصفحات */
    overflow-wrap: break-word;
    /* أفضل دعم عالمي */
    white-space: normal;
}

.contact .info-item .social-links a {
    font-size: 22px;
    display: inline-block;
    margin: 4px 8px 0 0;
    color: #999;
    transition: 0.3s;
}

.contact .info-item .social-links a:hover {
    color: var(--accent-color);
}

.contact .php-email-form {
    background-color: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-top: 30px;
    border-radius: 12px;
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 12px 15px;
    border-radius: 6px;
    color: #333;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 5px rgba(172, 140, 100, 0.4);
}

.contact .php-email-form ::placeholder {
    color: #aaa;
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 12px 30px;
    transition: 0.3s;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 2px 10px rgba(172, 140, 100, 0.3);
}

.contact .php-email-form button[type=submit]:hover {
    background: #9c7a52;
}

/*--------------------------------------------------------------
