/* Overall */
body {
    margin: 0;
    padding: 0;
    font-family: Tajawal;
    font-size: 1.375rem;
    height: 100%;
    width: 100%;
    color: #624223;
    overflow-x: hidden;
    text-align: right;
}

hr {
    border-top: 1px solid #8a6e4b;
    width: 50%;
}

span {
    font-weight: bold;
    background: linear-gradient(90deg, #f4d66a, #bb8532);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}

/* Whatsapp bubbble */
.whatsapp-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
}

.whatsapp-bubble img {
    width: 50%;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: white;
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem 1;
}

/* Hamburger Menu */
.hamburger {
    position: relative;
    display: block;
    width: 35px;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.hamburger .bar,
.hamburger:after,
.hamburger:before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: rgb(68, 41, 41);
    margin: 6px 0;
    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: white;
    padding-top: 200px;
    transition: 0.4s;
}

.mobile-nav.is-active {
    left: 0;
}

.mobile-nav a {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 16px;
    text-align: center;
    width: fit-content;
    color: #624223;
    text-decoration: none;
    font-weight: bold;
}

.mobile-nav a:hover {
    color: #bb8532;
}

@media (min-width: 767px) {
    .mobile-nav {
        display: none;
    }

    .hamburger {
        display: none;
    }
}

header div img {
    max-width: 150px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

header nav ul li {
    padding: 0 1rem;
    border-right: solid 1px #8a6e4b;
}

@media (max-width: 1030px) {
    header nav ul li {
        padding: 0;
    }

    header nav ul {
        padding: 0;
    }
}


nav ul li:last-child {
    border: none;
}

header nav ul li a {
    color: #8a6e4b;
    text-decoration: none;
    padding: 10px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    transform: scale(1.2);
    color: #bb8532;
}

/* About me */
.container-wrapper {
    padding-top: 5rem;
    background: linear-gradient(to bottom, #eae5e1 40%, #f5f1ef 80%, #ffffff 100%);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.profile {
    background-color: #8a6e4b;
    padding: 20px;
    text-align: center;
    color: white;
    width: 300px;
    border-radius: 10px;
}

.profile img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    object-fit: cover;
}

.about {
    margin-left: 20px;
    max-width: 600px;
}

.about h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.about p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

.social-icons img {
    width: 50px;
    height: 50px;
}

/* More Information */
.more-container {
    margin: 5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-container img {
    max-width: 400px;
    border-radius: 1rem;
    object-fit: cover;
}

.more-information-container {
    margin-right: 10rem;
}


.more-information-container p {
    max-width: 800px;
}

/* Footer Section */
.footer {
    display: flex;
    background-color: #131217;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

footer .footer-information-container {
    flex: 1;
}

footer .social-media-container {
    flex: 1;
}

footer .contact-information-container {
    flex: 1;
}

.social-media-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    flex: 1;
}

.social-media-single-container {
    display: flex;
    align-items: center;
}

.social-media-text {
    font-family: Poppins;
    font-size: 1rem;
    margin: 0;
}


.contact-icon {
    max-width: 25px;
    margin-right: 1rem;
}

.information-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.information-container p {
    font-family: Poppins;
}

.copyright {
    font-family: Poppins;
    text-align: center;
    font-size: 0.875rem;
    padding: 0.5rem;
    color: white;
    background-color: black;
    margin: 0;
}

@media screen and (max-width: 992px) {
    .header div {
        margin-right: 2rem;
    }

    .footer-information-container {
        display: none;
    }

    footer {
        font-size: 0.75rem;
    }

    .contact-icon {
        max-width: 30px;
        margin-right: 1rem;
    }

    .more-container {
        flex-direction: column;
        padding: 0 1rem;
    }

    .more-container img {
        width: 300px;
    }
}

@media screen and (max-width: 768px) {
    header {
        justify-content: space-around;
    }

    .header div img {
        max-width: 100px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #f5f1ed;
        padding: 1rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    nav ul li {
        margin: 1rem 0;
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }

    .container {
        flex-direction: column;
    }

    .more-container img {
        margin: 0 auto;
    }

    .more-information-container {
        margin: 0 1rem;
    }

    h1,
    h2 {
        text-align: center;
    }
}