@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap');

html {
    scroll-padding: 5rem;
}


* {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}



header {
    background-color: #172333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 100px;
}


.logo {
    text-decoration: none;
    color: #fcfcfc;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.7em;
}

br {
    background-color: #172333;
}

/* style for the search input */
#search {
    background-color: #e9196c;
    color: white;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    border-radius: 5px;
}

#search::placeholder {
    color: white;
  }

/* style for the category filter buttons */
#category-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#category-filters button {
    background-color: #e9196c;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
    cursor: pointer;
}

#category-filters button:hover {
    background-color: #e9196c;
}

#category-filters button.active {
    background-color: #e9196c;
}

/* style for the command table */
#cmd-table {
    width: 100%;
    border-collapse: collapse;
}

#cmd-table th,
#cmd-table td {
    color: white;
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#cmd-table th {
    background-color: #e9196c;
    color: white;
}

/* style for the command rows */
#cmd-table tbody tr {
    transition: background-color 0.3s;
}

#cmd-table tbody tr:hover {
    background-color: #e9196c;
}

/* styles for the different command categories */
tr.music {
    background-color: #172333;
}

.navigation a {
    color: #e9196c;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    padding-left: 30px;
    white-space: nowrap;
}

.navigation a:hover {
    color: #e9196c;
}

section {
    text-align: center;
}

.main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* background: url(images/background1.png) no-repeat; */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #172333;
    background-repeat: no-repeat;
    justify-content: center;
}

.main h2 {
    font-size: 3rem;
    color: #e9196c;
    text-shadow: 2px 2px #000000;
    font-weight: 500;
    white-space: nowrap;

}

.main h2 span {
    display: inline-block;
    margin-top: -10px;
    font-family: 'Sacramento', cursive;
    font-size: 3rem;
    color: #e9196c;
    text-shadow: 2px 2px #000000;
    font-weight: 900;
}

.main h3 {
    font-family: 'Sacramento', cursive;
    font-size: 3rem;
    color: #e9196c;
    text-shadow: 2px 2px #000000;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;

}

#changeText {
    font-family: 'Sacramento', cursive;
    font-size: 3rem;
    color: #e9196c;
    text-shadow: 2px 2px #000000;
    font-weight: 500;
    white-space: nowrap;
}

.main-btn {
    color: #ffffff;
    background-color: #e9196c;
    text-decoration: none;
    font-size: 1em;
    font-weight: 900;
    display: inline-block;
    padding: 1em 2em;
    letter-spacing: 1px;
    border-radius: 20px;
    transition: 0.7s ease;
    margin-bottom: 15px;
}


.main-btn:hover {
    background-color: #e9196c;
    transform: scale(1.1);

}


.Icon {
    color: #ffffff;
    font-size: 1.7em;
    padding-right: 15px;
    transition: 0.7s ease;
}

.Icon :hover {
    transform: scale(1.1);
}


.title {
    font-size: 2em;
    color: #e9196c;
    margin-top: 30px;
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px
}

a:active {
    color: #e9196c;
    text-decoration: none;
}

a {
    color: #e9196c;
    text-decoration: none;
}

.Here {
    text-decoration: none;
    color: #e9196c;
}

.Here:hover {
    color: #e9196c;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: transparent;
    background-image: url(https://freesvg.org/img/tree-27.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards, pulse 2s infinite ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

#myBtn:hover {
    animation: none;
    transform: scale(1.2);
    opacity: 1;
}

.content .C-Card {
    box-shadow: 0 5px 25px rgba(1, 1, 1, 50%);
    border-radius: 15px;
}

.C-Card {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    min-height: 6em;
    width: 17em;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.7s ease;
    margin-bottom: 60PX;
}

.C-Card:hover {
    transform: scale(1.1);
}


.Contact-title {
    display: inline-block;
    letter-spacing: 1px;
    padding: 1em 2em;
}

.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 1em;
    display: flex;
    justify-content: space-between;
}



.footer-title {
    font-size: 1.0em;
    font-weight: 600;
}

.footer-titleAr {
    font-size: 0.8em;
    font-weight: 600;
    color: #ffffff;

}

.footer-titleAr span {
    color: #e9196c;
}

.footer .IconAr {
    font-size: 0.8em;
    padding: 0 12px 0 0;
}

.footer-title span {
    color: #e9196c;
}

.footer .social-icons a {
    font-size: 1.0em;
    padding: 0 12px 0 0;
}

.hamburger {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;

}

.hamburger .bar,
.hamburger:after,
.hamburger:before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: #e9196c;
    margin: 6px 0px;
    transition: 0.4s;
}

.hamburger.is-active:before {
    transform: rotate(-45deg) translate(-8px, 6px);
}


.hamburger.is-active:after {
    transform: rotate(45deg) translate(-9px, -8px);
}

.hamburger.is-active .bar {
    opacity: 0;
}


.mobile-nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    min-height: 100vh;
    display: block;
    z-index: 98;
    background-color: #172333;
    padding-top: 120px;
    transition: 0.4s;
}

.mobile-nav a {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 16px;
    text-align: center;
    margin-bottom: 16px;
    padding: 12px 16px;
    font-size: 1.5em;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    background-color: #e9196c;

}

.mobile-nav a:hover {
    background-color: rgb(234, 234, 234);
}



.mobile-navAr.is-active {
    right: 0;
}

.mobile-nav.is-active {
    left: 0;
}



.mobile-navAr {
    position: fixed;
    top: 0;
    right: 100%;
    width: 100%;
    min-height: 100vh;
    display: block;
    z-index: 98;
    background-color: #e9196c;
    padding-top: 120px;
    transition: 0.4s;
}



.mobile-navAr a {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 16px;
    text-align: center;
    margin-bottom: 16px;
    padding: 12px 16px;
    font-size: 1.5em;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    background-color: #ffffff;
}

.mobile-navAr a:hover {
    background-color: rgb(234, 234, 234);
}



@media (max-width:1023px) {

    header {
        padding: 12px 20px;
    }

    .navigation a {
        padding-left: 10px;
    }

    .title {
        font-size: 1.2em;
        color: #e9196c;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 767px) {
    .navigation a {
        display: none;
    }

    .logo {
        font-size: 2em;
        padding-left: 50px;
        font-weight: 900;
    }

}


@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }

    .hamburger {
        display: none;
    }
}
