/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Override any content page styles that might affect header */
.content-wrapper,
.page-header,
.policy-content,
.about-content,
.faq-content,
.terms-content,
.contact-content {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
}

/* Force header to display correctly */
.header,
.header * {
    box-sizing: border-box !important;
}

/* Ensure header container is properly positioned */
.header .container {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

/* Override any potential sidebar styles */
.header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
}

/* Force header content to be horizontal */
.header-content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

/* Content Page Styles */
/* Privacy Policy Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.policy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section h3 {
    color: #374151;
    font-size: 1.25rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.contact-info {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

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

.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Terms & Conditions Styles */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.terms-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-section h3 {
    color: #374151;
    font-size: 1.25rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.terms-section p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

/* FAQ Styles */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #1f2937;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f9fafb;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

/* About Page Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.about-section h2 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.hero-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

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

.image-placeholder {
    background: #3b82f6;
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    background: #3b82f6;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.mission-item h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-item p {
    color: #6b7280;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3b82f6;
}

.value-item h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    background: #f3f4f6;
    color: #3b82f6;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.service-card h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-avatar {
    background: #3b82f6;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.team-member h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #6b7280;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-number {
    color: #3b82f6;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 600;
}

.contact-section {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-section p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #3b82f6;
    color: white;
}

.btn.primary:hover {
    background: #2563eb;
}

.btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn.secondary:hover {
    background: #e5e7eb;
}

/* Mobile Responsive Styles for Content Pages */
@media (max-width: 768px) {
    .policy-content,
    .terms-content,
    .faq-content {
        padding: 0 1rem;
    }
    
    .policy-section h2,
    .terms-section h2 {
        font-size: 1.25rem;
    }
    
    .policy-section h3,
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    .faq-category h2 {
        font-size: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer.active {
        padding: 1rem;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .hero-content h2 {
        text-align: center;
    }
    
    .mission-content,
    .values-grid,
    .services-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-section {
        padding: 1rem 0;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-section,
.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-section h2,
.contact-form-section h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-section > p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.method-icon {
    background: #3b82f6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.method-details h3 {
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-details p {
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.social-links {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.social-links h3 {
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background: #2563eb;
}

.contact-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #2563eb;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.faq-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.quick-faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.faq-item h3 {
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-link {
    text-align: center;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    padding: 0.75rem 2rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section,
    .contact-form-section,
    .faq-section {
        padding: 1.5rem;
    }
    
    .quick-faq {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Font Face Declarations for Helvetica Now */
@font-face {
    font-family: 'Helvetica Now';
    src: url('../fonts/HelveticaNow-Regular.woff2') format('woff2'),
         url('../fonts/HelveticaNow-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Now';
    src: url('../fonts/HelveticaNow-Medium.woff2') format('woff2'),
         url('../fonts/HelveticaNow-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Now';
    src: url('../fonts/HelveticaNow-Bold.woff2') format('woff2'),
         url('../fonts/HelveticaNow-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 0; /* Remove gap between header and hero */
    /* Ensure body doesn't interfere with header */
    position: relative !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

/* Ensure html doesn't interfere */
html {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    overflow-x: hidden !important;
}

/* Desktop: add a bit more space below fixed header */
@media (min-width: 992px) {
    body { padding-top: 72px; }
    /* Ensure event categories section isn’t too close to header */
    .categories { margin-top: 1rem; }
}

/* Mobile header optimization */
@media (max-width: 768px) {
    body {
        padding-top: 50px; /* Further reduced for mobile */
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 45px; /* Even more compact for small mobile */
    }
}

.container {
    /*max-width: 1400px;*/
    margin: 0 auto;
    /*padding: 0 20px;*/
    width: 100%;
    /* Ensure container doesn't interfere with header */
    position: relative;
    z-index: 1;
}





/* Hero section with auto-rolling backgrounds */
.hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 2rem 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile optimization for background images */
@media (max-width: 768px) {
    .categories, .latest-events {
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .category-card {
        padding: 0.75rem;
        min-height: 70px;
    }
    
    .category-card i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .category-card h3 {
        font-size: 0.8rem;
    }
}

/* Header styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    padding: 0.5rem 0; /* Reduced padding for more compact header */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1002 !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Force horizontal layout and prevent sidebar behavior */
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
}

/* Enhanced shadow when scrolling */
.header.scrolled {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* User dropdown styles */
.user-name-desktop {
    display: none; /* Hide user name in dropdown toggle on desktop */
}

.user-name-mobile {
    display: block; /* Show user name section in dropdown menu on desktop */
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
    border-radius: 0;
}

.dropdown-user-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.dropdown-user-name i {
    font-size: 1.2rem;
    color: #a24b4b;
}

/* Cart dropdown item styling */
.cart-dropdown-item .dropdown-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.cart-dropdown-item .dropdown-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(5px);
}

.cart-dropdown-item .cart-badge {
    background: #ff4757;
    color: #fff;
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 800;
    min-width: 18px;
    text-align: center;
    margin-left: auto;
}

/* Mobile cart item in Login dropdown */
.mobile-cart-item .dropdown-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-cart-item .dropdown-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(5px);
}

.mobile-cart-item .cart-badge {
    background: #ff4757;
    color: #fff;
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 800;
    min-width: 18px;
    text-align: center;
    margin-left: auto;
}

/* Desktop/Mobile visibility toggles for cart nav item */
.desktop-cart-only {
    display: block !important; /* Show on desktop */
}

.mobile-cart-item {
    display: none !important; /* Hide on desktop by default */
}

/* Mobile header optimization */
@media (max-width: 768px) {
    .header {
        padding: 0.3rem 0; /* More compact padding on mobile */
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
        min-height: 2.5rem; /* Smaller height on mobile */
        flex-direction: row; /* Ensure horizontal layout on mobile */
        flex-wrap: nowrap; /* Prevent wrapping */
    }
    
    .logo h1 {
        font-size: 1.3rem; /* Smaller logo on mobile to match dropdown */
        margin: 0;
    }
    
    .nav {
        margin-left: auto; /* Keep nav on the right */
    }
    
    .nav-menu {
        margin: 0;
        gap: 1rem; /* Reduce gap on mobile */
    }
    
    .dropdown-toggle {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .dropdown-toggle i {
        font-size: 0.8rem;
    }
    
    /* Ensure cart icon is visible on mobile */
    .cart-nav-item .cart-link {
        padding: 0.3rem;
        gap: 0.2rem;
    }
    
    .cart-nav-item .fa-cart-shopping {
        font-size: 1rem;
    }
    
    .cart-nav-item .cart-badge {
        font-size: 10px;
        padding: 1px 4px;
        min-width: 16px;
    }

    /* Hide desktop cart icon on mobile when not logged in */
    .desktop-cart-only {
        display: none !important;
    }

    /* Show cart in Login dropdown on mobile when not logged in */
    .mobile-cart-item {
        display: block !important;
    }

    /* Mobile header user dropdown styles */
    .user-name-mobile {
        display: block !important; /* Show user name in dropdown menu on mobile */
        background: rgba(255, 255, 255, 0.1);
        margin: 0;
        border-radius: 0;
    }

    .dropdown-user-name {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        color: #ffffff;
        font-weight: 600;
        font-size: 1rem;
    }

    .dropdown-user-name i {
        font-size: 1.2rem;
        color: #a24b4b;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.25rem 0; /* Ultra compact on small mobile */
    }
    
    .header-content {
        min-height: 2.2rem; /* Even smaller height on small mobile */
    }
    
    .logo h1 {
        font-size: 1.2rem; /* Even smaller to match dropdown */
    }
    
    .nav-menu {
        gap: 0.5rem; /* Even smaller gap on very small mobile */
    }
    
    .dropdown-toggle {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem; /* Reduced padding */
    }
    
    /* Ensure cart icon is visible on very small mobile */
    .cart-nav-item .cart-link {
        padding: 0.2rem;
        gap: 0.1rem;
    }
    
    .cart-nav-item .fa-cart-shopping {
        font-size: 0.9rem;
    }
    
    .cart-nav-item .cart-badge {
        font-size: 9px;
        padding: 1px 3px;
        min-width: 14px;
    }

    /* Hide desktop cart icon on very small mobile when not logged in */
    .desktop-cart-only {
        display: none !important;
    }

    /* Show cart in Login dropdown on very small mobile when not logged in */
    .mobile-cart-item {
        display: block !important;
    }

    .search-bar input {
        width: 150px;
        font-size: 12px;
        height: 35px;
    }
    
    .search-bar button {
        height: 35px;
        width: 40px;
    }
    
    .search-bar button i {
        font-size: 14px;
    }
}

.header-content {
    display: flex !important;
    justify-content: space-between; /* space items in one row */
    align-items: center;
    gap: 1rem;
    min-height: 2.75rem; /* slightly smaller */
    flex-direction: row !important; /* Ensure horizontal layout */
    width: 100% !important;
    /* Force horizontal layout and prevent sidebar behavior */
    flex-wrap: nowrap !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

.logo {
    flex: 0 0 auto; /* Don't grow or shrink */
    margin-left: 25%;
}

.nav {
    flex: 0 0 auto;
    display: flex !important;
    align-items: center;
    /* Prevent sidebar behavior */
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
	margin-right: 25%;
}

.logo h1 { font-size: 1.3rem; font-weight: 700; margin: 0; white-space: nowrap; line-height: 1; }

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
	margin-top: 0.5rem;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo {
        margin-left: auto;
    }

    .nav {
        margin-right: auto;
    }

    .logo-image {
        height: 32px;
       max-width: 155px;
		margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 28px;
		margin-left: 10%;
		margin-top: 0.5rem;
    }
}

/* Inline admin page title between logo and dropdown */
.admin-page-header-text { flex: 1 1 auto; text-align: center; }
.admin-page-title { font-size: 1.1rem; margin: 0; font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; }

.logo a {
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

/* Cart in navbar */
.cart-nav-item .cart-link { 
    position: relative; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.4rem; 
    color: #fff; 
    text-decoration: none; 
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.cart-nav-item .cart-link:hover {
    background: rgba(255, 255, 255, 0.1);
}
.cart-nav-item .cart-badge { 
    background: #ff4757; 
    color: #fff; 
    border-radius: 999px; 
    padding: 2px 6px; 
    font-size: 12px; 
    font-weight: 800; 
    min-width: 18px;
    text-align: center;
}
.cart-nav-item .fa-cart-shopping {
    font-size: 1.1rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    width: 100%;
    justify-content: center;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.admin-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

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

/* Also show when explicitly toggled via JS */
.dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile dropdown positioning - center on screen */
@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%) scale(0.9);
        min-width: auto;
        width: calc(100vw - 2rem);
        max-width: 280px;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 9999;
    }

    /* Special positioning for admin dropdown to prevent off-screen issues */
    .admin-dropdown-menu {
        position: fixed !important;
        top: 10vh !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) scale(0.9) !important;
        width: calc(100vw - 2rem) !important;
        min-width: auto !important;
        max-width: 300px !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        z-index: 9999 !important;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.show .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 5%) scale(1);
    }

    /* Special transform for admin dropdown when visible */
    .dropdown:hover .admin-dropdown-menu,
    .dropdown.show .admin-dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) scale(1) !important;
    }

    /* Ensure dropdown is completely hidden when not active */
    .dropdown:not(.show) .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translate(-50%, -50%) scale(0.9) !important;
        pointer-events: none !important;
    }

    .dropdown:not(.show) .admin-dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(-50%) scale(0.9) !important;
        pointer-events: none !important;
    }

    /* When dropdown is shown, ensure it's fully interactive */
    .dropdown.show .dropdown-menu,
    .dropdown.show .admin-dropdown-menu {
        pointer-events: all !important;
    }

    /* Add overlay background for mobile */
    .dropdown.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    /* Ensure all dropdown items are visible */
    .admin-dropdown-menu li {
        display: block !important;
        visibility: visible !important;
    }

    .admin-dropdown-menu a {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Additional mobile responsive for very small screens */
@media (max-width: 480px) {
    .dropdown-menu {
        width: calc(100vw - 1rem);
        max-width: 260px;
    }

    .admin-dropdown-menu {
        top: 5vh !important;
        max-height: 85vh !important;
        width: calc(100vw - 1rem) !important;
        min-width: auto !important;
        max-width: 260px !important;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .admin-dropdown-menu {
        top: 5vh !important;
        max-height: 85vh !important;
    }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #ffffff;
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding-left: 1.25rem;
}

.dropdown-menu a.admin-link {
    background: linear-gradient(45deg, #574449, #a24b4b);
    color: white;
    margin: 0.25rem 0;
    border-radius: 6px;
    font-weight: 600;
}

.dropdown-menu a.admin-link:hover {
    background: linear-gradient(45deg, #6e555a, #c15959);
    color: white;
    padding-left: 1.25rem;
}

/* Enhanced admin dropdown menu */
.admin-dropdown-menu {
    min-width: 280px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0.75rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
}

.dropdown-section-header {
    padding: 0.5rem 1rem 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    list-style: none;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
    border: none;
    list-style: none;
}

.dropdown-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    transition: all 0.2s ease;
    padding: 0.75rem 1rem;
}

.dropdown-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(5px);
}

.dropdown-nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-left: 3px solid #a24b4b;
}

.dropdown-nav-link:hover {
    background: #a24b4b;
    color: white;
}

.dropdown-nav-link.active {
    background: linear-gradient(45deg, #574449, #a24b4b);;
    color: white;
    font-weight: 500;
}

.dropdown-nav-link .badge {
    background: #dc3545;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    margin-left: auto;
}

/* Admin Badge */
.admin-badge {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-bar {
    display: flex;
    align-items: center;
    /* Ensure proper positioning */
    position: relative;
    left: 0;
    right: 0;
    transform: none;
}

.search-bar form {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
    width: 300px;
    height: 40px;
    box-sizing: border-box;
    font-size: 14px;
}

.search-bar button {
    padding: 0;
    background: #ffd700;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    color: #333;
    height: 40px;
    width: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background: #f0c800;
}

.search-bar button i {
    font-size: 16px;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Hero section with auto-rolling backgrounds */
.hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 4rem 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffd700;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Hero background animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { 
        opacity: 0;
        transform: translateX(-30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradient-text {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #ff0000, #4f4f4f, #fd5454, #000000, #020202);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 6s ease infinite;
}

.hero-bg {
    animation: fadeIn 1.5s ease-in-out;
}

.hero-content {
    animation: slideInLeft 1s ease-out 0.5s both;
}

.hero-stats {
    animation: slideInRight 1s ease-out 1s both;
}

/* Categories section */
.categories {
    margin-bottom: 3rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/background/background4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.categories h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    font-size: 1.5rem;
    color: #a24b4b;
    margin-bottom: 0.5rem;
}

.category-card h3 {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* Responsive hero adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-indicators {
        bottom: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Events section */
.latest-events {
    margin-bottom: 3rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.latest-events h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.event-info {
    padding: 1.5rem;
}

.event-info h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.event-date {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.photo-count {
    color: #00ff4c;
    font-weight: 500;
    margin-bottom: 1rem;
}

.view-event {
    display: inline-block;
    background: #002fff;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.view-event:hover {
    background: #5a6fd8;
}

/* Footer styles */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
	padding:2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff0000;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row; /* keep single row on mobile */
        gap: 0.5rem;
    }
    .admin-page-header-text { display: none; } /* hide centered title on mobile */
    
    .nav-menu {
        flex-wrap: nowrap;
        margin-right: 0;
    }
    
    .search-bar input {
        width: 200px;
    }
    
    .search-bar {
        order: 3; /* Move search bar after nav menu */
        margin-left: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Alert messages */
.alert {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid transparent;
}

.alert-error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #16a34a;
}

.error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-weight: 500;
}
