@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Oswald:wght@400;500;600;700&display=swap');
/* ---Custom fonts--- */
@font-face {
  font-family: 'Avelire';
  src: url('./src/fonts/AVELIRE.woff2') format('woff2'),
       url('./src/fonts/AVELIRE.woff') format('woff'),
       url('./src/fonts/AVELIRE.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'hamisheh';
  src: url('./src/fonts/Digi Hamishe Bold.woff2') format('woff2'),
       url('./src/fonts/Digi Hamishe Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* Main font for title */
@font-face {
  font-family: 'sarvenaz';
  src:  url('./src/fonts/Digi Sarvenaz.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* CSS Variables */
:root {
    --back-color: #e8f3e8;
    --first-color:#0d0135;
    --second-color:#ff6b6b;
    --third-color:#ffd166;
    --fourth-color:#4ecdc4;
    --sixth-color:#06d6a0;
    --purple-900: #d3f7ff;
    --purple-950: #ffe785;
    --fuchsia-950: #9ad4bc;
    
}
    
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    direction: rtl;
 
}

html {
    scroll-behavior:smooth;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif;
}

body {
    margin: 0;
    line-height: inherit;
    font-family: 'hamisheh', sans-serif;
    color: var(--first-color);
    background-color: var(--back-color);
    letter-spacing: 0.05em;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
    25% { transform: translateY(-100px) translateX(50px) scale(1.2); opacity: 0.8; }
    50% { transform: translateY(-50px) translateX(-30px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-150px) translateX(20px) scale(1.1); opacity: 0.7; }
}
/* Container */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 480px) {
    .container {
        max-width: 480px;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

/* Sections */
section {
    padding-top: 4rem;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    section {
        padding-top: 5rem;
    }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--fuchsia-950);
    z-index: 50;
    transition: border 0.2s ease;
    border-bottom:solid #ff6b6b 1px;
}

.dark #header {
    background-color: #29343D;
}

.nav-container {
    position: relative;
    height: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo a {
    font-size: 1.5rem;
    line-height: 2rem;
    /*text-transform: uppercase;*/
    font-family: 'sarvenaz', sans-serif;
    text-decoration: none;
    color: var(--first-color);
}

.logo span {
    color: var(--second-color);
}

/* Navigation Menu */
.nav-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3.5rem 0;
    background-color: var(--back-color);
    border-bottom: 1px solid var(--second-color);
}

.dark .nav-menu {
    background-color: #29343D;
    color: #92A4b1;
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        padding: 0;
        border: none;
        width: auto;
        margin-left: auto;
        background-color: transparent;
    }
}

.nav-menu.hidden {
    display: none;
}

@media (min-width: 768px) {
    .nav-menu.hidden {
        display: block;
    }
}

.nav-list {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1.25rem;
    font-family: 'hamisheh';
    font-size: 1rem;
    list-style: none;
    color: #0d0135;

}

@media (min-width: 768px) {
    .nav-list {
        flex-direction: row;
        padding-right: 15rem;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--first-color);
    transition: color 0.2s ease-in;
}
.dark .nav-link{
    color: #92A4b1;
}
.nav-link:hover {
    color: var(--second-color);
}

.nav-link-active {
    color: var(--second-color);
}

.nav-link-active:hover {
    color: var(--second-color);
}

.nav-close {
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    font-size: 1.5rem;
    line-height: 2rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-close {
        display: none;
    }
}

.btn-login {
    background-color: var(--second-color);
    padding: 0.5rem;
    font-size: 0.8rem;
    font-family: 'sarvenaz';
    color: var(--first-color);
    border: solid 1px;
    border-color: var(--second-color);
    border-radius: 15%;
     margin-right: 185px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: inline-block; 
    width: 6rem;
}


@media (min-width: 1200px) {
    .btn-login {
        padding: 0.6rem 1.2rem; 
        font-size: 0.9rem; 
        width: 6.5rem;
        height: 2.5rem;
        margin-block: 10px;
        border-radius: 5px;
        }
}


@media (min-width: 768px) and (max-width: 1199.98px) {
    .btn-login {
        margin-right: 5%;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}


@media (max-width: 767.98px) {
    .btn-login {
        margin-right: 2%; 
        width: auto;
        font-size: 0.75rem; 
        padding: 0.4rem 0.8rem; 
        display: block;
        text-align: center;
        margin-top: 10px; 
    }
}

@media (max-width: 575.98px) {
    .btn-login {
        margin-right: 1%;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}




/* Navigation Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.theme-toggle {
    cursor: pointer;
    margin-left: 1rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.hamburger {
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

/* Home Section */
#home {
    padding-top: 5rem;
}

.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .home-container {
        flex-direction: row;
    }
}

.home-image-wrapper {
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-0.25rem);
    /* animation: spin 1s linear infinite; */
}

@media (min-width: 768px) {
    .home-image-wrapper {
        flex-basis: 50%;
    }
}

@media (min-width: 1024px) {
    .home-image-wrapper {
        flex-basis: 40%;
    }
}

.home-image {
    width: 15rem;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}


@media (min-width: 768px) {
    .home-image {
        width: 100%;
    }
}

.home-content {
    text-align: center;
}

@media (min-width: 768px) {
    .home-content {
        flex-basis: 50%;
        text-align: start;
    }
}

@media (min-width: 1024px) {
    .home-content {
        flex-basis: 60%;
    }
}

.home-title {
    font-family: 'sarvenaz', sans-serif;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .home-title {
        font-size: 3.75rem;
        line-height: 1;
    }
}

/* Separator */
.separator {
    /* width: 7rem; */
    width: 100%;
    height: 2px;
    background-color: var(--second-color);
    margin: 1.25rem auto;
}

@media (min-width: 768px) {
    .separator {
        margin: 1.25rem 0;
        width: 100%;
    }
}

/* Paragraph */
.paragraph {
    font-family: 'hamisheh';
    font-size: 0.75rem;
    line-height: 1.25rem;
    color: var(--fiveth-color);
}

/* Features */
.features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 2.5rem 0;
    font-size: 1rem;
    line-height: 1.5rem;
}

@media (min-width: 768px) {
    .features {
        justify-content: flex-start;
        gap: 5rem;
    }
}

.feature-item {
    text-align: center;
}

.feature-icon {
    color: var(--second-color);
    font-size: 2.25rem;
    line-height: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-transform: capitalize;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: opacity 0.2s ease-in;
}

.btn-primary {
    color: var(--black-color);
    background-color: var(--fourth-color);
}

.btn-primary:hover {
    opacity: 0.75;
}

/* Category Section */
.category-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .category-container {
        flex-direction: row;
    }
}

.category-card {
    display: flex;
    padding: 0.75rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .category-card {
        flex: 1 1 0%;
    }
}

.category-card.bg-secondary {
    background-color: var(--second-color);
}

.category-card.bg-red {
    background-color: var(--fourth-color);
}

.category-card.bg-green {
    background-color: var(--sixth-color);
}

.category-image-wrapper {
    flex-basis: 33.333333%;
    position: relative;
}

.category-image {
    position: absolute;
    width: 7rem;
    bottom: -1rem;
    left: -20px;
}

.category-content {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    margin-right: 1rem;
}

.card-title {
    font-family: 'sarvenaz', sans-serif;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.category-description {
    font-size: 0.75rem;
    line-height: 1rem;
}

.category-link {
    text-decoration: none;
    color: var(--black-color);
    cursor: pointer;
}

.category-link-secondary {
    color: var(--second-color);
}

/* Promo Section */
.promo-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .promo-container {
        flex-direction: row;
        gap: 2.5rem;
    }
}

.promo-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    background-color: var(--third-color);
    border-radius: 0.5rem;
}

.dark .promo-card {
    background-color: #3C5665;
}

@media (min-width: 768px) {
    .promo-card {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .promo-card {
        flex: 1 1 0%;
        flex-direction: row-reverse;
    }
}

.promo-image {
    width: 10rem;
    margin-left: auto;
    margin-right: auto;
    transition: animation 0.2s ease;
}

@media (min-width: 768px) {
    .promo-image {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }
}

.promo-image.promo-ping:hover {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.promo-image.promo-bounce:hover {
    animation: bounce 1s infinite;
}

.promo-content {
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .promo-content {
        padding-top: 0;
    }
}

.promo-content .promo-content {
    margin-bottom: 0.5rem;
}

.promo-tag {
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--second-color);
}

.promo-link {
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--second-color);
    text-decoration: none;
}

/* About Section */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
    }
}

.about-image,
.about-content {
    flex: 1 1 0%;
}

.about-title {
    font-family: 'sarvenaz', sans-serif;
    font-size: 1rem;
    line-height: 2.25rem;
    font-weight: 700;
    text-transform:uppercase;
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.25rem 0;
    list-style: none;
}
.dark .about-list {
    color: #92A4b1 !important;
}

.dark .btn-login{
    color: #0d0135 !important;
}
.dark .footer-link{
    color: #92A4b1 !important;
}
.dark .footer-logo{
    color: #92A4b1 !important;
}
.about-list li {
 
    margin-bottom: 0.25rem;
}

.about-check {
    color: var(--second-color);
    margin-right: 0.5rem;
}

/* Menu Section */
.section-header {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: var(--first-color);
}

.dark .section-title{
    color: #92A4b1;
}
.dark .contact-content{
    color: #0d0135;
}
/* Tabs */
.tabs-wrap {
    margin-top: 1rem;
}

.tabs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 2.5rem 0;
    list-style: none;
}

.tab-item {
    color: var(--second-color);
    display: inline-block;
    padding: 0.75rem 2rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1rem;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    border-radius: 0.8rem;
    background-color: var(--third-color);
    transition: opacity 0.2s ease-in;
}

.dark .tab-item {
    background-color:#5A7480;
}

.tab-item:hover {
    opacity: 0.75;
}

.tab-item.active-tab {
    background-color: var(--fourth-color);
    color: var(--black0);
   
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 3rem;
    }
}

.menu-item {
    list-style: none;

}

.menu-image-wrapper {
    height: 14rem;
    display: grid;
    place-items: center;
    background-color: var(--third-color);
    border-radius: 1.5rem;
    transition: background-color 0.2s linear;
}

.dark .menu-image-wrapper {
    background-color:#5A7480;
}

@media (min-width: 1024px) {
    .menu-image-wrapper {
        width: 12rem;
    }
}

.menu-image-wrapper:hover {
    background-color: var(--fourth-color);
}

.menu-image {
    width: 10rem;
    height: 10rem;
    transition: transform 0.2s linear;
}

@media (min-width: 768px) {
    .menu-image {
        width: 12rem;
    }
}

@media (min-width: 1024px) {
    .menu-image {
        width: 9rem;
        object-fit: contain;
    }
}

.menu-image:hover {
    transform: scale(1.1);
}

.menu-item-content {
    padding-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.menu-description {
    color: var(--fiveth-color); 
    font-size: 0.75rem;
    line-height: 1rem;
}

.show-item{
    
    color: var(--second-color);
    cursor: pointer;
     text-decoration: none;
    color: var(--second-color);
}

.menu-price {
    color: var(--second-color);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    color: inherit;
}

/* Review Section */
.review-section {
    background-color: var(--seventh-color);
    padding: 5rem 0;
    margin-top: 7rem ;
}

.dark .review-section {
    background-color: #1e2025;
}

.review-swiper {
    padding: 2.5rem 0;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.review-card.review-purple {
    background-color: var(--purple-900);
}

.review-card.review-fuchsia {
    background-color: var(--fuchsia-950);
}

.review-card.review-purple-dark {
    background-color: var(--purple-950);
}

.dark .review-card {
    background-color: #3C5665;
}

.reviewer {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.reviewer-image {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
}

.reviewer-info {
    margin-left: 0.5rem;
}

.reviewer-name {
    font-family: 'hamisheh', sans-serif;
    text-transform: uppercase;
}

.review-quote {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: var(--second-color);
    margin-left: auto;
}

/* Contact Section */
.contact-section {
    background-color: var(--fourth-color);
    padding: 4rem 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .contact-container {
        flex-direction: row;
        align-items: center;
    }
}

.contact-content {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .contact-content {
        flex: 1 1 0%;
    }
}


.contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: var(--black-color);
}

.contact-description {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--black-color);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.78rem;
}

@media (min-width: 768px) {
    .subscribe-form {
        flex-direction: column;
        flex: 1 1 0%;
    }
}

.email-input {
    width: 80%;
    height: 40px;
    padding: 0.5rem;
    border-radius: 0.5rem;
    outline: none;
    border: none;
    margin-top: 15px;
   
}

@media (min-width: 768px) {
    .email-input {
        width: 80%;
    }
}

.email-input:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--third-color);
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-transform: capitalize;
    text-align: center;
    text-decoration: none;
    color: var(--primary-color);
    border-radius: 15px ;
    border-color: #ffd166;
    transition: opacity 0.2s ease-in;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'hamisheh';
}

.subscribe-btn:hover {
    opacity: 0.75;
}

/* Footer */
footer {
    background-color: var(--fourth-color);
}

.dark footer {
    background-color: #1e2025;
}

.footer-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    align-items: start;
    gap: 1.25rem;
    padding-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-brand {
    margin-bottom: 0.75rem;
}

.footer-logo {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--first-color);
}

.footer-logo span {
    color: var(--second-color);
}

.footer-description {
    font-size: 0.75rem;
    line-height: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dark .footer-links {
    color: #92A4b1;
}
.footer-title {
    font-size: 1rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    font-family: 'hamisheh', sans-serif;
    margin-bottom: 0.5rem;
}

.footer-link {
    font-size: 0.75rem;
    line-height: 1rem;
    text-decoration: none;
    color: var(--first-color);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--second-color);
}

.footer-contact,
.footer-address {
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 0.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.contact-icon {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--second-color);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-icon {
    color: var(--second-color);
    font-size: 1.125rem;
    line-height: 1.75rem;
    cursor: pointer;
    transition: transform 0.2s ease-in;
}

.social-icon:hover {
    transform: translateY(-0.25rem);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--blue-950);
}

/* .dark .footer-bottom {
    border-top-color: red;
} */

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Scroll Up Button */
.scroll-up {
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: var(--second-color);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--black-color);
    z-index: 50;
    transition: transform 0.2s ease-in, bottom 0.2s ease;
    text-decoration: none;
}

.scroll-up:hover {
    transform: translateY(-0.25rem);
}

.scroll-up.show {
    bottom: 1rem;
}

/* Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}


.hidden {
    display: none !important;
}

/* Dark mode overrides */
.dark body {
    background-color: #1e2025;
    color: white;
}

.dark .footer-bottom {
    border-top-color: var(--first-color);
}


.custom-alert {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    animation: fadeIn 0.3s ease-in-out;
}

.custom-alert.success {
    background-color: #eafaf1;
    color: #1e7e34;
    border: 1px solid #28a745;
}

.custom-alert.error {
    background-color: #fdeaea;
    color: #b02a37;
    border: 1px solid #dc3545;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

