/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.15);
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.25);
    transform: translateX(-50%) translateY(-2px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 1rem;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.logo-text h3 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.logo-text p {
    color: #3b82f6;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.logo-tagline {
    color: #333;
    font-size: 0.6rem;
    font-weight: 500;
    margin-top: 0.3rem;
    text-align: left;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #1e3a8a;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1e3a8a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #F2EADF 0%, #E6D7C3 50%, #DDD2C4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #8B4513;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
}

.hero-description {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-container {
    animation: fadeInUp 1s ease 0.4s both;
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.15);
    min-width: 120px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.25);
}

.countdown-item span:first-child {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #8B4513;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

.countdown-item .label {
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Categories Section */
.categories {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F2EADF 0%, #E6D7C3 100%);
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.categories h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8B4513;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
    position: relative;
    z-index: 2;
}

.categories h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #A0522D);
    border-radius: 2px;
}

.categories-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.category-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 3px solid transparent;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: #8B4513;
}

.category-card.active {
    border-color: #8B4513;
    box-shadow: 
        0 15px 35px rgba(139, 69, 19, 0.25),
        0 5px 15px rgba(139, 69, 19, 0.15),
        inset 0 2px 0 rgba(139, 69, 19, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.4),
        0 4px 10px rgba(59, 130, 246, 0.2);
    transform: rotate(-5deg);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover .category-icon {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(59, 130, 246, 0.5),
        0 6px 15px rgba(59, 130, 246, 0.3);
}

.category-card:nth-child(1) .category-icon {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.category-card:nth-child(2) .category-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.category-card:nth-child(3) .category-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.category-card:nth-child(4) .category-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.category-card:nth-child(5) .category-icon {
    background: linear-gradient(135deg, #ec4899, #be185d);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.category-card:nth-child(6) .category-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.emoji-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    display: block;
    line-height: 1;
}

.category-card:hover .emoji-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.category-card h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover h3 {
    color: #8B4513;
    transform: scale(1.05);
}

.category-card.active h3 {
    color: #8B4513;
    font-weight: 700;
}

/* Stalls Section */
.stalls {
    padding: 5rem 0;
    background: #f8f9fa;
}

.stalls h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.loading-message, .error-message, .empty-state {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

.loading-message i, .error-message i, .empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.loading-message i {
    color: #3b82f6;
}

.error-message i {
    color: #ef4444;
}

.empty-state i {
    color: #6b7280;
}

.stalls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stall-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.stall-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8B4513;
}

.stall-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.stall-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stall-card:hover .stall-image img {
    transform: scale(1.08);
}

.stall-info {
    padding: 1.5rem;
}

.stall-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.stall-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.stall-category {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border: none;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.close:hover {
    color: #333;
    background: #e9ecef;
    transform: scale(1.1);
}

#modal-title {
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    padding-right: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

.product-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-price {
    font-weight: 700;
    color: #8B4513;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #8B4513;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F2EADF 0%, #E6D7C3 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: #8B4513;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8B4513;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #333;
}

.social-links a:hover {
    color: white;
    background: #8B4513;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: 98%;
        padding: 0.8rem 1rem;
    }

    .nav-container {
        padding: 0 10px;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .logo-text h3 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.7rem;
    }

    .logo-tagline {
        font-size: 0.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: calc(100% - 20px);
        left: -100%;
        margin: 0 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-radius: 15px;
        padding: 2rem 0;
        gap: 1rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 10px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding-top: 120px;
        padding-left: 1rem;
        padding-right: 1rem;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description p {
        font-size: 1.1rem;
    }

    .countdown {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1.5rem 1rem;
    }

    .countdown-item span:first-child {
        font-size: 2rem;
    }

    .categories h2 {
        font-size: 2rem;
    }

    .categories-grid {
        gap: 1rem;
    }

    .category-card {
        width: 140px;
        height: 140px;
        padding: 1.5rem 1rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .emoji-icon {
        font-size: 2rem;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    .stalls-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-stats {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .countdown-item {
        min-width: 70px;
        padding: 1.2rem 0.8rem;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem;
    }
    
    .countdown-item .label {
        font-size: 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-description p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .navbar {
        padding: 0.6rem 0.8rem;
    }
}

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-description p {
        font-size: 1rem;
    }

    .countdown-item span:first-child {
        font-size: 1.8rem;
    }

    .categories h2, .stalls h2, .about h2, .contact h2 {
        font-size: 1.8rem;
    }

    .category-card {
        width: 120px;
        height: 120px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .emoji-icon {
        font-size: 1.8rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .category-card {
        border: 2px solid #000;
    }
    
    .nav-link {
        color: #000;
    }
    
    .nav-link:hover {
        color: #8B4513;
        background: #fff;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.category-card:focus,
.stall-card:focus,
button:focus,
.close:focus {
    outline: 2px solid #8B4513;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .countdown-container,
    .modal,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    * {
        box-shadow: none !important;
    }
}
