@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap");

.logo {
    text-decoration: none;
    display: inline-block;
    padding: 0px;
    transition: transform 0.3s ease;
}

.logo-text {
    font-family: "Orbitron", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.logo-text .lux {
    font-weight: 400;
    color: #3498db;
}

.logo-text::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3498db;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-text::after {
    transform: scaleX(1);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    color: #555;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #3498db;
}


/* Add this to your CSS if not already present */
.wrap-header-cart {
    position: fixed;
    z-index: 1100;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.0);
    visibility: hidden;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}



.header-cart {
    position: fixed;
    z-index: 1100;
    width: 390px;
    max-width: calc(100% - 30px);
    height: 100vh;
    top: 0;
    right: -400px;
    background-color: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.show-header-cart .header-cart {
    right: 0;
}

/* Add to your CSS file */
.icon-header-noti {
    position: relative;
}

.icon-header-noti[data-notify]:after {
    content: attr(data-notify);
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    background-color: #e65540;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.show-header-cart {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Cart animations and transitions */
.js-panel-cart {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.show-header-cart {
    opacity: 1 !important;
    visibility: visible !important;
}

.animate-bounce {
    animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Prevent body scroll when cart is open */
body.cart-open {
    overflow: hidden;
}

/* Smooth quantity transitions */
.num-product {
    transition: all 0.2s ease;
}

/* Hover effects */
.js-show-cart:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Cart Styles */
.wrap-header-cart {
    transition: transform 0.3s ease-in-out;
}

.wrap-header-cart.show-header-cart {
    transform: translateX(0);
}

.header-cart-content {
    height: 100vh;
    overflow-y: auto;
}

/* Animation classes */
.animate-slide-in {
    animation: slideIn 0.3s ease-out;
}

.animate-slide-out {
    animation: slideOut 0.3s ease-in;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/* 
   File location: hom/css/new.css
   Modern curvy footer design with animations - whitish color scheme
*/

/* Footer styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: #333;
    overflow: hidden;
    padding: 3rem 0 1rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.05);
}

/* Container for footer content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Footer content layout */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-weight: 600;
    color: #444;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: #777;
    border-radius: 3px;
}

/* Links styling with curved rectangles */
.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-section ul li a:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: #222;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact section */
.contact-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

/* Social icons */
.social-icons {
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-block;
    color: #444;
    background-color: rgba(0, 0, 0, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Copyright section */
.copyright-container {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.copyright-text {
    font-size: 0.9rem;
    color: #777;
}

.copyright-icons {
    display: inline-block;
    margin-left: 5px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Background animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #f8f8f8, #e8e8e8, #f5f5f5, #eaeaea);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    z-index: 1;
}

/* Floating shapes animation */
.footer::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 120%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 50%),
        radial-gradient(circle at 80% 60%, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 60%),
        radial-gradient(circle at 40% 90%, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 40%);
    z-index: 1;
    animation: floatingShapes 20s linear infinite;
}

@keyframes floatingShapes {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 2rem;
    }
}

/* 
   File location: hom/css/new.css
   Add these styles to the end of your existing CSS file 
*/

/* Header link styles for all screen sizes */
.main-menu>li>a {
    /* Base color that works on both light and dark backgrounds */
    color: #3498db;
    /* Brighter, more vibrant blue that works on both black and white */
    font-weight: 600;
    /* Increased weight for better visibility */
    position: relative;
    transition: color 0.3s ease;
}

/* Hover effect for desktop */
.main-menu>li>a:hover {
    color: #232629;
    /* Brighter blue on hover */
}

/* Active link indicator */
.main-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #5a95bd;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-menu>li>a:hover::after {
    transform: scaleX(1);
}

/* For dark backgrounds, ensure higher visibility */
@media (prefers-color-scheme: dark),
(header-on-dark) {
    .main-menu>li>a {
        color: #3498db;
    }
}