
@font-face {
    font-family: EnglishFont;
    src: url('../fonts/GE_Dinkum_Regular.ttf');
}
@font-face {
    font-family: ArabicFont;
    src: url('../fonts/SST_Arabic_Roman.ttf');
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.lang-en {
    font-family: EnglishFont !important;
}
.lang-ar {
    font-family: ArabicFont !important;
}
img {
    user-select: none;
    pointer-events: none;
}
main {
    min-height: 100vh;
    position:relative;
}
.language-select {
    position: absolute;
    top: 0;
    right: 0;
    background: #804b2b !important;
    z-index: 11111 !important;
    border: none;
    outline: none;
    border: 1px  solid #eee;
    color: #eee;
    padding: 5px;
}
.hero-banner {
    background: url('../images/hero-banner.webp');
    background-position: center center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.brand img {
    width: 150px;
}
.hero-title {
    font-weight:800;
    color: #4A2D1B;
    font-size :48px
}
.hero-sub-title {
    font-weight:800;
    color: #4A2D1B;
    font-size :38px
}
.hero-content {
    font-size :20px;
    color: #4A2D1B;
    font-weight: 500;
    margin: 25px 0;
}
.banner-content {
    margin: 20px 0;
    padding-top: 60px;
}
.action-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    background: #4A2D1B;
    border-radius: 8px;
    padding: 10px 15px;
    width: 180px;
}

.action-button:hover {
    text-decoration: none;
    color: white;
    background: #804b2b;
}
.action-button img {
    width: 35px;
    filter: invert(100%);
}
.action-button span {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
}
.action-group {
    display: flex;
}
.action-content h5 {
    font-weight: bold;
    color: #4A2D1B;
}
.action-content p {
    margin: 0;
    font-weight: 500;
    color: #4A2D1B;
}
.action-content {
    margin: 50px 0;
}
.shapes {
    position: absolute;
}
.shape-two {
    top: 50%;
    left: 50%;
}
.shape-one {
    top: 0;
    right: 0
}
.food-one {
    top: 0;
    right: 10%;
}
.food-two {
    bottom: 0;
    right: 0
}
.app-screen {
    width: 350px;
    filter: drop-shadow(10px 10px 5px lightgray);
    z-index: 111;
    position: relative;
}
footer {
    background: #4A2D1B;
    color: #F4C9A1;
    padding: 25px;
    text-align: center;
}
@media only screen and (min-width: 1200px) {
    .app-screen {
        width: 350px;
    }
}

@media only screen and (max-width: 900px) {
    .app-screen {
        width: 400px;
    }
    .action-group {
        justify-content: center !important;
        align-items: center;
    }
    .action-button {
        margin: 10px !important;
    }
}
@media only screen and (max-width: 400px) {
    .hero-title {
        font-size: 18px !important;
    }
    .hero-sub-title {
        font-size: 15px !important;
    }
}
@media only screen and (max-width: 500px) {
    .app-screen {
        width: 250px;
    }
    .hero-title {
        font-size: 25px;
    }
    .hero-sub-title {
        font-size: 18px;
    }
    .hero-content {
        font-size: 16px;
    }
    .brand img {
        width: 100px;
    }
    .shape-one {
        width: 30px;
    }
    .shape-two {
        width: 30px;
        z-index: -1;
    }
    .food-one {
        width: 140px;
    }
    .banner-content {
        padding-top: 30px;
    }
    
    .action-group {
       flex-direction: column;
       justify-content: center !important;
       align-items: center;
    }
    .action-button {
        margin: 10px !important;
    }
}
