@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;1,300&display=swap');


/* تنسيق الصفحة بالكامل */
body {
    /* Apply a linear gradient background with two colors */
    background-image: linear-gradient(139deg, #000 65%, #b7b783 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

.container {
    text-align: center;
}

.s {
    position: relative;
    transform: rotate(-38deg);
    margin-bottom: 30px;
    transition: 0.5s;
}

.b {
    display: flex;
    justify-content: center;
}


.b-1-1 {
    border: 2px solid #b16f79;
    width: 15px;
    height: 10px;
    margin-right: 3px;
    border-radius: 0 5px 0 0;
}

.b-1 {
    border: 2px solid #b6b57a;
    width: 20px;
    height: 10px;
    margin-right: 3px;
    border-radius: 5px 0 0 0;
    background: #b6b57a;
}


.b-2-2 {
    border: 2px solid #b16f79;
    width: 20px;
    height: 10px;
    margin: 3px 3px 0 0;
    border-radius: 2px 0 0 2px;
}

.b-2 {
    border: 2px solid #9c996e;
    background: #9c996e;
    width: 15px;
    height: 10px;
    margin: 3px 3px 0 0;
    border-radius: 0 0 0 0;
}


.b-3-3 {
    border: 2px solid #b16f79;
    border-top: none;
    width: 25px;
    height: 10px;
    margin: 3px 3px 0 0;
    border-radius: 0 0 5px 0;
}

.b-3 {
    border: 2px solid #eb7072;
    border-top: none;
    width: 10px;
    height: 10px;
    margin: 3px 3px 0 0;
    border-radius: 0 0 0 5px;
    background: #eb7072;
}

.b-1:hover,
.b-1-1:hover,
.b-2:hover,
.b-2-2:hover,
.b-3:hover,
.b-3-3:hover {
    opacity: 0.6;
}

.b-1,
.b-1-1,
.b-2,
.b-2-2,
.b-3,
.b-3-3
{
    animation: box 2s ease-in-out;
    transition: 0.5s;
}
@keyframes box{
    from{
        background-color: transparent;
        margin:-5px;
        border-color: transparent;
    }
    to{

    }
}


/* تنسيق العناصر النصية */
h1 {
    font-size: 1.2rem;
    color: #fff;
}

h1:after {
    content: '';
    height: 1px;
    background-image: linear-gradient(90deg, #eb7072 40%, #9c996e 40%, #b6b57a 60%);
    width: 100%;
    z-index: 999;
    display: block;
    /* تأكد من أن العنصر يظهر كبلوك مستقل */
    position: relative;
    /* ضبط الموقع النسبي للخط تحت العنوان */
    bottom: 0;
    /* يظهر أسفل العنوان */
    transition: 0.5s;
    animation: line 2s linear;
}

@keyframes line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #b16f79;
}

p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* تنسيق الأيقونات */
.icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icons a {
    display: inline-block;
    font-size: 30px;
    margin: 0 10px;
    text-decoration: none;
    color: #b7b783;
    /* لون الأيقونة */
    transition: 0.5s;
}

.whatsapp:hover {
    color: #25d366;
    font-size: 29px;
    transform: rotate(20deg);
    /* تغيير اللون عند التحويل */
}

.email:hover {
    color: #ff6c00;
    font-size: 29px;
    /* تغيير اللون عند التحويل */
}

.instagram:hover {
    color: #d01de2;
    font-size: 29px;
    transform: rotate(20deg);
    /* تغيير اللون عند التحويل */
}