@import url("../font.css");

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "TheYearOfHandicrafts", sans-serif;
    /* transition: all 0.3s ease; */
}

/* Nav css */

#main #nav {
    width: 100%;
    height: 80px;
    /* background-color: black; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 5vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    transition: all 0.3s ease;

}

#main #nav.scrolled {
    background-color: rgba(58, 75, 67,0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#main #nav img {
    width: 55px;
    height: 55px;
    object-fit: cover;
}

#main #nav svg{
    width: 30px;
    height: 30px;
    /* color: var(--secondary-golden-color); */
    margin-left: auto;
    /* margin-right: 2rem; */
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

#main #nav ul {
    list-style: none;
    display: flex;
    align-items: flex-end;
    /* justify-self: center; */
    gap: 5rem;
}

#main #nav ul a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

html[dir="rtl"] #main #nav ul a{
    font-family: "din-next-bold", sans-serif !important;
    font-weight: 600;
}

#main #nav ul a:hover {
    color: var(--secondary-golden-color);
}

/* Language Switcher */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* margin-left: auto; */
}

.language-switcher {
    position: relative;
}

.lang-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.lang-toggle svg {
    width: 24px;
    height: 24px;
    color: white;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.lang-toggle:hover svg {
    opacity: 1;
    color: var(--secondary-golden-color);
    transform: rotate(15deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(58, 75, 67, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.lang-option:hover {
    background: var(--primary-black-color);
    color: var(--secondary-golden-color);
}

.lang-option.active {
    background: var(--secondary-golden-color);
    color: black;
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}


html[dir="rtl"] .nav-actions {
    margin-left: 0;
    /* margin-right: auto; */
}

html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .btnelem button img {
    transform: rotate(180deg);
}


html[dir="rtl"] .tag img{
    transform: rotate(135deg);
}

html[dir="rtl"] .tag.revealed p {
    line-height: 1.8;
    margin-top: 0px;
    max-width: 610px !important;
    padding-bottom: 5px;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    margin-left: auto;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url("../images/home/hero-bg-green.webp") no-repeat center center;
    background-size: cover;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(37, 49, 44, 0.95) 0%,
        rgba(37, 49, 44, 0.9) 50%,
        rgba(37, 49, 44, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    z-index: -1;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Close Menu Button */
.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.close-menu span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.close-menu span:nth-child(1) {
    transform: rotate(45deg);
}

.close-menu span:nth-child(2) {
    transform: rotate(-45deg);
}

.close-menu:hover span {
    background-color: var(--secondary-golden-color);
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 2rem 3rem;
    gap: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    text-align: center;
}

.mobile-nav-link {
    font-size: 2rem;
    font-family: "didot-bold", sans-serif;
    font-weight: 600;
    color: white;
    text-decoration: none;
    /* letter-spacing: 0.05rem; */
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--secondary-golden-color);
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 1rem;
}

.mobile-menu-footer p {
    opacity: 0.7;
    font-size: 0.85rem;
}

.mobile-socials {
    display: flex;
    gap: 1.8rem;
}

.mobile-socials a {
    text-decoration: none;
    background-color: var(--secondary-golden-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 100px;
    font-size: 1.2rem;
    opacity: 0.7;
    margin-top: auto;
    transition: all 0.3s ease;
}

.mobile-socials a:hover {
    color: var(--secondary-golden-color);
    opacity: 1;
}

/* Reveal animation helper */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}
/* Nav css end *//* Button CSS */

.btnelem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnelem button a {
    text-decoration: none;
    color: inherit;
}
.btnelem button:nth-child(1) {
    width: fit-content;
    height: 3rem;
    line-height: 1;
    padding: 1rem 2rem;
    border: none;
    background-color: var(--secondary-golden-color);
    color: black;
    font-weight: 500;
    /* letter-spacing: 0.01rem; */
    font-size: 1rem;
    /* border-radius: 15px; */
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}

.btnelem:hover button:nth-child(1) {
    background-color: var(--primary-black-color);
    color:var(--secondary-golden-color);
    padding: 1rem 2.5rem;
}



.btnelem button:nth-child(2) {
    width: 3rem;
    height: 3rem;
    padding: 1rem;
    border: none;
    background-color: var(--secondary-golden-color);
    color: black;
    border-radius: 15px;
    
    /* border-top-right-radius: 15px; */
    /* border-bottom-left-radius: 15px; */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.btnelem:hover button:nth-child(2){
    border-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    
}
.btnelem:hover button:nth-child(2) img{
    transform: rotate(45deg);
}

.btnelem button img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    /* margin-left: 0.5rem; */
    transition: all 0.3s ease-in-out;

}

/* Button CSS end */

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding:0.5rem 1.5rem;
    background-color: var(--secondary-golden-color);
    color: black;
    text-decoration: none;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

html[dir="rtl"] .whatsapp-float {
    right: unset;
    flex-direction: row-reverse;
    left: 30px;
}

.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    background-color: var(--green-color);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
    width: 24px;
    height: 24px;
    filter: invert(0);
    transition: all 0.3s ease;
}

.whatsapp-float:hover img {
    filter: invert(1);
}

.whatsapp-float span {
    font-family: "TheYearOfHandicrafts", sans-serif;
    white-space: nowrap;
    margin-top: 2px;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .whatsapp-float img {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 0.8rem;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
}
/* Floating WhatsApp Button End */


/* Tag */

.tag {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: fit-content;
    padding: 0.7rem 2rem;
    border: 1px solid #555555;
    border-radius: 100px;
    gap: 1.5rem;
    font-size: 1rem;
    /* letter-spacing: -0.01rem; */
    font-family: "didot-medium";
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: all 0.6s ease;
    background-color: #100f0f11; 
    backdrop-filter: blur(100px);
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.tag::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(236, 207, 156, 0.35) 0%,
        rgba(236, 207, 156, 0.2) 25%,
        rgba(58, 75, 67, 0.15) 50%,
        transparent 70%
    );
    left: var(--mouse-x);
    top: var(--mouse-y);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.tag:hover::before {
    opacity: 1;
}

.tag * {
    position: relative;
    z-index: 1;
}

.tag img{
    transform: rotate(-45deg);
}
.tag p{
    margin-top:4px;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: opacity 0.6s ease, max-width 1s ease;
}

.tag.revealed p {
    opacity: 1;
    max-width: 450px;
}

/* Tag Style End */

#footer {
    width: 100%;
    height: 50vh;
    background-color: var(--green-color); 
    position: sticky;
    bottom: 0;
    z-index: 1;
    color:white;
    /* height: 100vh; */
    /* position: sticky;
    bottom: 0;
    z-index: 1; */
    /* border: 1px solid red;
    background: url("./assets/images/home/herofooter-bg.png");
    background-size: cover;
    background-position: center; */
    /* padding-top: 3rem; */
    /* position: relative; */
    
}

/* Background Image → FUfj9nOXd0JBRlC3cRr7ANvhfk.jpg */

#footer #footer-foreground{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    
    /* box-shadow: 0 50px 50px 0 rgba(27, 16, 20, .6); */
}

#footer #footer-foreground > img{
    background: linear-gradient(360deg, rgba(58, 75, 67, 0) 50.02%, #3A4B43 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
}
#footer #footer-foreground *:not(img){
    
    z-index:1;
}

#footer #footer-background {
    /* position: sticky; */
    /* bottom: 0; */
    width: 100%;
    /* height:30vh; */
    padding: 2vw 4vw;
    background: url("../images/home/hero-bg-green.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #5a5858c8;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 6.5rem;
    z-index:1;
    display: none;

}

#footer #footer-background h1{
    color: var(--secondary-golden-color);
    opacity: 0.7;
    font-family: "didot-bold", sans-serif;
    font-weight: 800;
    /* color: transparent; */
    /* -webkit-text-stroke: 1px var(--secondary-golden-color); */
    /* font-weight: 400; */
}


#footer #ftop {
    width: 100%;
    height: 60%;
    /* margin-top:2rem; */
    /* background-color: red; */
    /* border: 1px solid blue; */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--green-color);

}

#footer #ftop h1 {
    font-size: 3.5rem;
    font-family: "didot-bold", sans-serif;
    width: 40%;
    text-transform: capitalize;
    font-weight: 600;
    /* letter-spacing: 0.1rem; */
    line-height: 1;
}

#footer #ftop > p {
    font-size: 1.1rem;
    width: 35%;
    /* margin: 0 auto; */
    opacity: 0.7;
    line-height: 1.1;
}

#footer #ftop #btndiv {
    display: flex;
    gap: 2rem;
}

.btnelem.transparentbtn button {
    background-color: transparent !important;
    color: white !important;
    border: 1px solid white;
    transition: all 0.3s ease;
}

.btnelem.transparentbtn:hover button:nth-child(1) {
    background-color: var(--primary-black-color) !important;
    color: var(--secondary-golden-color) !important;
    border: 1px solid var(--primary-black-color) !important;
}

#footer #fbtm {
    width: 100%;
    height: 100%;
    /* background-color: red; */
    border-top: 1px solid var(--green-color);
    display: flex;

    /* padding: 2rem 3vw;; */
}
#footer #fbtm #btmleft {
    border-right: 1px solid var(--green-color);
    width: 30%;
    height: 100%;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* background-color: blue; */
}

html[dir="rtl"] #footer #fbtm #btmleft {
    border-right: none;
    border-left: 1px solid var(--green-color);
}

#footer #fbtm #btmleft img {
    width: fit-content;
    min-height: 40px;
    object-fit: cover;
}

#footer #fbtm #btmleft .info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}
html[dir="rtl"] #footer #fbtm #btmleft .info{
    font-size: 1rem;
}

#footer #fbtm #btmleft .info p:nth-child(1) {
    opacity: 0.7;
}
#footer #fbtm #btmleft .info p:nth-child(2) {
    font-size: 1.1rem;
    opacity: 1;
}

#footer #fbtm #copyright {
    margin-top: auto;
    font-size: 1.1rem;
}

#footer #fbtm #copyright span {
    opacity: 0.7;
}

#footer #fbtm #btmright {
    width: 70%;
    min-height: 100%;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

#footer #fbtm #btmright ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.2rem;
    line-height: 1;
    width: fit-content;
}

#footer #fbtm #btmright ul li.liheading {
    font-size: 1rem;
    opacity: 0.7 !important;
}

#footer #fbtm #btmright ul a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

#footer #fbtm #btmright ul a:hover {
    color: var(--secondary-golden-color);
}

#footer #fbtm #btmright ul li {
    cursor: pointer;
}

#footer #fbtm #btmright #socials {
    /* background-color: red/; */
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    /* gap: 1.2rem; */
}
#footer #fbtm #btmright #socials #socialone{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.2rem;;
}

#footer #fbtm #btmright #socials #socialone a {
    text-decoration: none;
    background-color: var(--secondary-golden-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    border-radius: 100px;
    font-size: 1.2rem;
    opacity: 0.7;
    margin-top: auto;
    transition: all 0.3s ease;
}
#footer #fbtm #btmright #socials #socialone a img{
    width: 20px;
    height: 20px;
    object-fit: cover;
}

#footer #fbtm #btmright #socials #socialone a:hover {
    transform: scale(1.1);
    opacity: 1;
}


#footer #fbtm #btmright #socials #socialtwo{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* gap: 0.5/rem;; */
}

#footer #fbtm #btmright #socials #socialtwo a {
    text-decoration: none;
    color: var(--secondary-golden-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.3rem;
    border-radius: 100px;
    font-size: 0.9rem;
    opacity: 1;
    margin-top: auto;
    transition: all 0.3s ease;
}

#footer #fbtm #btmright #socials #socialtwo a:hover{
    color: white;
}

#footer #fbtm #btmright #socials #socialtwo a img{
    width: 50px;
    height:50px;
    object-fit: cover;
}
#footer #fbtm #btmright #socials #socialtwo a img:hover {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(1.2);
}
#footer #fbtm #btmright #socials #socialtwo p{
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

html[dir="rtl"] #footer #fbtm #btmright #socials #socialtwo p,
html[dir="rtl"] #footer #fbtm #btmright #socials #socialtwo a{
    font-size: 1rem;
}
/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablets and Small Desktops (769px - 1024px) */
@media screen and (max-width: 1024px) {
    /* Navbar */
    #main #nav {
        padding: 1vw 3vw;
    }

    .language-switcher {
        order: -1;
    }

    #main #nav ul {
        gap: 3rem;
    }

    #main #nav ul a {
        font-size: 0.9rem;
    }

    /* Button */
    .btnelem button:nth-child(1) {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    /* Tag */
    .tag {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    /* Footer */
    #footer #ftop h1 {
        font-size: 3rem;
        width: 50%;
    }

    #footer #ftop > p {
        width: 45%;
    }

    #footer #footer-background {
        font-size: 5rem;
    }
}

/* Mobile and Tablets (up to 768px) */
@media screen and (max-width: 768px) {
    /* Navbar */
    #main #nav {
        height: 70px;
        padding: 1rem 1.5rem;
    }

    #main #nav img {
        opacity: 1;
        width: 45px;
        height: 45px;
    }

    #main #nav ul {
        display: none;
    }

    /* Show hamburger menu */
    .menu-toggle {
        display: flex !important;
    }

    /* Button */
    /* .btnelem {
        flex-direction: column;
        width: 100%;
    }

    .btnelem button:nth-child(1) {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .btnelem button:nth-child(2) {
        width: 100%;
        height: 3rem;
    } */

    /* Tag */
    .tag {
        padding: 0.7rem 1rem;
        gap: 1rem;
        font-size: 0.85rem;
    }

    .tag img {
        width: 15px;
        height: 15px;
    }

    /* Footer */
    #footer {
        height: auto;
    }

    #footer #ftop {
        padding: 3rem 2rem;
        gap: 1.2rem;
    }

    #footer #ftop h1 {
        font-size: 2rem;
        width: 90%;
    }

    #footer #ftop > p {
        font-size: 0.95rem;
        width: 90%;
    }

    #footer #ftop #btndiv {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    #footer #ftop #btndiv .btnelem {
        width: 100%;
    }

    #footer #ftop #btndiv .transparentbtn {
        width: 100%;
    }

    #footer #fbtm {
        flex-direction: column;
        height: auto;
    }

    #footer #fbtm #btmleft {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--green-color);
        padding: 2rem;
    }

    #footer #fbtm #btmright {
        width: 100%;
        padding: 2rem;
        gap: 2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #footer #fbtm #btmright ul {
        font-size: 1.1rem;
        gap: 1.2rem;
    }

    #footer #fbtm #btmright #socials {
        flex-direction: column;
        gap: 2rem;
    }
    #footer #fbtm #btmright #socials #socialone{
        flex-direction: row;
        align-items: center;
        justify-content: center; 
        /* background-color: red; */
    }
    #footer #fbtm #btmright #socials #socialtwo{
        align-items: center;
    }

    #footer #footer-background {
        font-size: 3.5rem;
        padding: 3vw;
    }

    #footer #footer-background h1 {
        font-size:3.5rem;
    }
}

/* Small Mobile (up to 480px) */
@media screen and (max-width: 480px) {
    /* Navbar */
    #main #nav {
        height: 65px;
        padding: 0.8rem 1rem;
        align-items: center;
    }

    #main #nav img {
        opacity: 1 !important;
        width: 40px;
        height: 40px;
    }

    /* Button */
    .btnelem button:nth-child(1) {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
        height: 2.8rem;
    }


    .btnelem button img {
        width: 20px;
        height: 20px;
    }

    .tag {
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    html[dir="rtl"] .tag.revealed p {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
        padding-bottom: 5px;;
        font-size: 0.85rem;
        max-width: 500px !important;
        /* text-wrap: wrap; */

    }

    /* Footer */
    #footer #ftop h1 {
        font-size: 1.8rem;
    }

    #footer #ftop > p {
        font-size: 0.9rem;
    }

    #footer #fbtm #btmleft {
        padding: 1.5rem;
    }

    #footer #fbtm #btmleft img {
        min-height: fit-content;
    }

    #footer #fbtm #btmleft .info {
        font-size: 0.85rem;
    }

    #footer #fbtm #btmleft .info p:nth-child(2) {
        font-size: 1rem;
    }

    #footer #fbtm #btmleft #copyright {
        font-size: 1rem;
    }

    #footer #fbtm #btmright {
        padding: 1.5rem;
    }

    #footer #fbtm #btmright ul {
        font-size: 1rem;
        gap: 1rem;
    }

    #footer #fbtm #btmright ul li.liheading {
        font-size: 0.9rem;
    }

    #footer #fbtm #btmright #socials .btnelem button:nth-child(1) {
        min-width: 110px;  
    }
    #footer #fbtm #btmright #socials {
        gap: 1.5rem;
    }

    #footer #fbtm #btmright #socials a {
        font-size: 1.1rem;
    }

    #footer #footer-background {
        font-size: 2.5rem;
    }

    #footer #footer-background h1 {
        font-size:3.5rem;
    }

    /* Mobile Menu Adjustments */
    .mobile-nav-link {
        font-size: 1.6rem;
        gap: 1.5rem;
    }

    .mobile-nav {
        gap: 1.5rem;
    }

    .mobile-menu-content {
        padding: 70px 1.5rem 2rem;
        gap: 1.5rem;
    }

    .close-menu {
        top: 1.5rem;
        right: 1.5rem;
        width: 35px;
        height: 35px;
    }

    .close-menu span {
        width: 25px;
        height: 2.5px;
    }

    .mobile-menu-footer p {
        font-size: 0.8rem;
    }

    .mobile-socials {
        gap: 1.5rem;
    }

    .mobile-socials a {
        font-size: 0.9rem;
    }

    .menu-toggle {
        width: 28px;
        height: 20px;
    }

    .menu-toggle span {
        height: 2.5px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8.75px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8.75px) rotate(-45deg);
    }
}
