@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

:root {
    --primary-color: #2c3e50;
    --accent-color: #4CAF50;
    --text-color: #333;
    --bg-color: #f9f9f9;
}

body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    direction: ltr;
    /* Default LTR */
    background-color: var(--bg-color);
    color: var(--text-color);
}

body.lang-ar {
    direction: rtl;
    text-align: right;
}

body.lang-en {
    direction: ltr;
    text-align: left;
}

.flydubai-hero-section {
    background: url("../medias/flydubai-holidays-hero.c6209899da24.avif");
    background-position: top center;
    color: white;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 550px;
}

.flydubai-hero-content {
    margin: 0 25px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    font-size: 36px;
    line-height: 0.5;
    position: absolute;
    bottom: 140px;
    left: 2rem;
}

.flydubai-hero-title {
    background: #0096d7;
    padding: 14px;
    width: fit-content;
}

.flydubai-hero-subtitle {
    background: #0096d7;
    padding: 14px;
    width: fit-content;
    font-weight: 700;
}

.widget-wrapper {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: -100px auto 0px;
    position: relative;
    z-index: 10;
}

@media (max-width:1024px) {

    .flydubai-hero-section {
        min-height: 400px;
    }

    .flydubai-hero-content {
        bottom: 120px;
    }
}

@media (max-width:768px) {

    .flydubai-hero-section {
        min-height: 300px;
        background-position: top center;
    }

    .flydubai-hero-content {
        bottom: 110px;
        margin: 0 15px;
    }

    .flydubai-hero-title,
    .flydubai-hero-subtitle {
        font-size: 13px;
        padding: 8px;
    }
}