/*! الخطوط */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

@font-face {
    font-family: "font_GE-SS ";
    src: url("../fonts/GE SS Two Bold.otf");
}


/*! الألوان الرئيسية */
:root {
    --white-color: #fff;
    --black-color: #000;
    --main-color: rgba(201, 170, 121, 1);
    --green-color: rgba(0, 97, 70, 1);
    --text-color: rgba(115, 115, 115, 1);
}

body {
    font-family: "Tajawal", sans-serif;
    /* background-color: rgba(253, 249, 241, 1); */
    background-color: var(--white-color);

    overflow-x: hidden;
    /* cursor: none; */
}
::selection {
    background-color: var(--main-color);
    color: #fff;
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button:focus,
a {
    outline: none;
}

button {
    border: none;
}

*:focus {
    outline: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
    margin: 0;
}

img {
    width: 100%;
    height: 100%;
}

.my-container {
    width: 90%;
    margin: 0 auto;
}

p {
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 500;
}

/*! Globals */
.img-icon {
    width: 30px;
    height: 30px;
}

section.space {
    margin-top: 100px;
}


section.space-pages {
    padding-block: 100px;
}
.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: auto;
    width: 50%;
    text-align: center;
    padding-bottom: 60px;
}

.title h2 {
    color: var(--main-color);
    font-size: clamp(25px, 5vw, 33px);
    font-weight: 700;
}

/* Main Page Header */
.main-page-header {
    background-color: #fff;
    height: 70px;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-inline: 20px;
    gap: 10px;
    font-weight: bold;
    font-size: clamp(13px, 3vw, 20px);
    color: var(--main-color);
}
.main-page-header .badge {
    background-color: rgba(255, 244, 221, 1);
    color: var(--main-color);
    padding: 8px 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-page-header .badge img {
    width: clamp(15px, 3vw, 20px);
    height: clamp(15px, 3vw, 20px);
}
.main-page-header .badge.active {
    background-color: var(--main-color);
    color: var(--white-color);
}
/* Main Btn */
.main-btn {
    position: relative;
    background-color: var(--green-color);
    color: var(--white-color);
    font-size: clamp(10px, 2vw, 16px);
    font-weight: 600;
    width: clamp(120px, 20vw, 150px);
    height: clamp(10px, 10vw, 40px);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(196, 181, 160, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}
.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c4b5a0 0%, #b8a890 100%);
    transition: left 0.5s ease;
}
.main-btn:hover::before {
    left: 100%;
}

.main-btn:hover {
    background: linear-gradient(135deg, #f3cc8d 0%, #8f6d3e 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 181, 160, 0.4);
    color: #ffffff !important;
}
/* .main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
} */
.main-btn.more {
    background-color: var(--white-color);
    color: var(--main-color);
    width: clamp(120px, 10vw, 150px);
    height: clamp(10px, 7vw, 40px);
}
.main-btn.show-more {
    margin: auto;
}




/* .main-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}
.main-btn:hover::before {
    left: 100%;
} */


.to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(135deg, var(--main-color), #a8843b);
    color: var(--white-color);
    box-shadow: 0 4px 20px rgba(201,170,121,0.4);

    border: 1px solid #ffffff7a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: .5s;
    opacity: 0;
    animation: scrollTop 1s infinite alternate;
}

.to-top:hover {
    transform: scale(1.1) translateY(-3px);
    color: var(--white-color);
}

@keyframes scrollTop {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}
