﻿@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Kufam:wght@400;700;900&display=swap");

:root {
    --newsoftcolorpurple: #2b115a;
    --newsoftcolorgray: #545454;
    --newsoftcolorred: #f01a22;
    --cairo: "Cairo", sans-serif;
    --kufam: "Kufam", sans-serif;
}

body {
    font-family: var(--kufam), sans-serif;
}

.imge {
    max-width: 500px ;
    height: auto ;
    width: 100% ;
    object-fit: cover ;
}


.hero__heading {
    font-family: var(--kufam);
    color: #0f0f0f; /* أسود غامق متناسق مع اللوجو */
    font-size: 85px;
    font-weight: 800;
    margin: 0;
}

.hero__paragraph {
    font-family: var(--cairo);
    font-size: 21px;
    font-weight: 300;
    color: #555; 
    margin: 25px auto;
}

.hero__button {
    background-color: #4CAF50; 
    color: white;
    font-family: var(--cairo);
    font-weight: 700;
    padding: 15px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .hero__button:hover {
        background-color: #3e9143; 
    }


    .hero__button.hero__button--mobile {
        display: none;
    }
.imaged {
    display: none !important;
}

@media screen and (max-width: 1200px) {
    .hero__heading {
        font-size: 60px ;
    }

    .hero__paragraph {
        font-size: 18px;
        margin: 18px auto;
    }
   
}

@media screen and (max-width: 768px) {
    .hero__heading {
        font-size: 45px;
        text-align: center;
    }
    .hero img {
        position: static !important;
        /* inset: 0; */
        display: block;
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
        z-index: 1;
    }
    .imaged {
        display: block !important;
    }
        .imge {
        display: none !important;
    }
    .hero__paragraph {
        font-size: 16px;
        margin: 12px auto;
        text-align: center;
    }

    .hero__button {
        display: none;
    }

       .hero__button.hero__button--mobile {
            display: block ;
            width: 100%;
        }
}
