/* ==========================================
   LUCAS PRINTS — ENHANCED STYLES.CSS
   Original code preserved + design improved
   ========================================== */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background: #fff;
    font-family: 'League Gothic', Arial, sans-serif;
    overflow-x: hidden;
  }
  
  /* ===== SKIP LINK (ACCESSIBILITY - NEW) ===== */
  .skip-link {
    position: absolute;
    top: -60px;
    left: 12px;
    background: #980404;
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 10px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s;
  }
  .skip-link:focus {
    top: 0;
  }
  
  /* ===== TOP MARQUEE ===== */
  .top-marquee {
    background: #FFD41D;
    overflow: hidden;
    border-bottom: 2px solid #000;
  }
  
  .marquee-track {
    display: flex;
    width: max-content;
  }
  
  .marquee-track span {
    padding: 6px 30px;
    font-size: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    color: #980404;
  }
  
  /* ===== NAVBAR ===== */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
    /* ENHANCED: subtle shadow */
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border-bottom: 1.5px solid #f0f0f0;
  }
  
  .nav-left,
  .nav-right {
    display: flex;
    gap: 50px;
  }
  
  .nav-left { justify-content: flex-start; }
  .nav-right { justify-content: flex-end; }
  
  .navbar a {
    text-decoration: none;
    color: #980404;
    font-size: 25px;
    letter-spacing: 4px;
    /* ENHANCED: animated underline */
    position: relative;
    transition: color 0.2s;
  }
  
  /* ENHANCED: animated underline on hover */
  .navbar a::after {
    content: '';
    display: block;
    height: 2.5px;
    background: #FFD41D;
    border-radius: 2px;
    width: 0;
    transition: width 0.25s ease;
    position: absolute;
    left: 0;
    bottom: -4px;
  }
  .navbar a:hover::after {
    width: 100%;
  }
  .navbar a:hover {
    color: #c40000;
  }
  
  .nav-center {
    font-size: 35px;
    color: #c40000;
    text-align: center;
    flex: 1;
    /* ENHANCED: pointer-events none so center doesn't intercept clicks */
    pointer-events: none;
  }
  
  /* ===== RESPONSIVE ONLY (NO DESIGN CHANGE) ===== */
  
  /* Tablets */
  @media (max-width: 1024px) {
    .navbar {
      padding: 12px 20px;
    }
  
    .nav-left,
    .nav-right {
      gap: 30px;
    }
  
    .navbar a {
      font-size: 22px;
      letter-spacing: 3px;
    }
  
    .nav-center {
      font-size: 30px;
    }
  }
  
  /* Phones */
  @media (max-width: 640px) {
    .navbar {
      grid-template-columns: 1fr;
      row-gap: 10px;
      text-align: center;
      padding: 10px 15px;
    }
  
    .nav-left,
    .nav-right {
      justify-content: center;
      gap: 25px;
    }
  
    .nav-center {
      font-size: 26px;
    }
  
    .navbar a {
      font-size: 20px;
      letter-spacing: 2px;
    }
  }
  
  /* ===== HERO SECTION ===== */
  .hero {
    max-width: 1300px;
    margin: 30px auto;
    background: #FFD41D;
    border-radius: 24px;
    border: 4px solid #000;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: visible;
    /* ENHANCED: lifted shadow */
    box-shadow: 6px 6px 0 #000;
  }
  
  /* ENHANCED: subtle decorative circle */
  .hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.10);
    border-radius: 50%;
    pointer-events: none;
  }
  
  /* ===== HERO TEXT ===== */
  .hero-text h1 {
    font-family: 'Londrina Solid', cursive;
    font-size: clamp(54px, 7vw, 90px);
    line-height: 1;
    color: #fff;
    -webkit-text-stroke: 2px #000;
  }
  
  .hero-text .highlight {
    color: #DD0000;
    -webkit-text-stroke: 2px #000;
  }
  
  .hero-text p {
    margin-top: 20px;
    font-size: clamp(16px, 2.2vw, 28px);
    color: #2A2929;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.5;
  }
  
  .hero-icons {
    margin-top: 20px;
    display: flex;
    gap: 18px;
  }
  
  .hero-icons a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #fff;
    color: #c40000;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #000;
    text-decoration: none;
    /* ENHANCED: box-shadow pop */
    box-shadow: 3px 3px 0 #000;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .hero-icons a:hover {
    background: #000;
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
  }
  
  /* ===== HERO IMAGE ===== */
  .hero-image {
    position: relative;
  }
  
  .hero-image img {
    position: absolute;
    right: -60px;
    bottom: -230px;
    width: 540px;
    max-width: none;
    display: block;
    /* ENHANCED: subtle drop shadow */
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
  }
  
  /* ===== BOTTOM MARQUEE ===== */
  .bottom-marquee {
    margin-top: 80px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }
  
  /* ===== HOURS BADGE (NEW) ===== */
  .hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    background: #FFD41D;
    border: 2.5px solid #000;
    border-radius: 50px;
    padding: 9px 22px;
    font-family: 'League Gothic', Arial, sans-serif;
    font-size: 19px;
    color: #2A2929;
    letter-spacing: 1.5px;
    box-shadow: 3px 3px 0 #000;
  }
  .hours-badge i {
    color: #980404;
    font-size: 17px;
  }
  
  /* ===== ABOUT SECTION ===== */
  .about {
    max-width: 1300px;
    margin: 80px auto;
    padding: 40px;
  }
  
  .about-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    gap: 60px;
  }
  
  /* Logo */
  .about-logo img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 50%;
    /* ENHANCED: yellow ring + stronger shadow */
    border: 4px solid #FFD41D;
    box-shadow: 6px 6px 0 #000;
    margin-left: 25%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .about-logo img:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #000;
  }
  
  .about-text {
    margin-left: 25%;
  }
  
  /* Text */
  .about-text h2 {
    font-family: 'Londrina Solid', cursive;
    font-size: 48px;
    color: #980404;
    margin-bottom: 20px;
    text-align: center;
    margin-left: -25%;
  }
  
  .about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(15px, 1.5vw, 20px);
    line-height: 1.75;
    color: #333;
    max-width: 570px;
  }
  
  /* ===== SERVICES SECTION ===== */
  .services {
    max-width: 1300px;
    margin: 50px auto;
    text-align: center;
    /* ENHANCED: light bg strip */
    background: #fafafa;
    padding: 60px 40px;
    border-radius: 24px;
    border: 2px solid #eee;
  }
  
  .services-title {
    font-family: 'League Gothic', Arial, sans-serif;
    font-size: 48px;
    color: #980404;
    margin-bottom: 40px;
    letter-spacing: 4px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    align-items: center;
  }
  
  /* Individual service */
  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    /* ENHANCED: card style */
    background: #fff;
    border: 2.5px solid #000;
    border-radius: 18px;
    padding: 28px 16px 22px;
    box-shadow: 4px 4px 0 #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
  }
  
  .service-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 #000;
  }
  
  .service-item i {
    font-size: 70px;
    color: #FFD41D;
    /* ENHANCED: icon has a shadow edge */
    filter: drop-shadow(0 2px 0 #000);
    transition: transform 0.3s ease;
  }
  
  .service-item span {
    font-family: 'League Gothic', Arial, sans-serif;
    font-size: 22px;
    color: #980404;
    letter-spacing: 2px;
  }
  
  /* Bounce animation */
  @keyframes bounce {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-12px); }
    60%  { transform: translateY(0); }
    100% { transform: translateY(-4px); }
  }
  
  .service-item:hover i {
    animation: bounce 0.6s ease;
  }
  
  /* ===== PRODUCTS SECTION ===== */
  .products {
    background: #FFD41D;
    padding: 80px 40px;
    border-top: 2.5px solid #000;
    border-bottom: 2.5px solid #000;
  }
  
  .products-title {
    text-align: center;
    font-family: 'League Gothic', Arial, sans-serif;
    font-size: 48px;
    color: #980404;
    margin-bottom: 50px;
    letter-spacing: 4px;
  }
  
  .products-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  /* PRODUCT CARD */
  .product-card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 20px;
    height: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'League Gothic', Arial, sans-serif;
    color: #980404;
    /* ENHANCED: brutal shadow */
    box-shadow: 5px 5px 0 #000;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
  }
  
  .product-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
  }
  
  /* IMAGE */
  .product-card img {
    width: 100%;
    height: 75%;
    object-fit: cover;
    border-radius: 0;
    display: block;
  }
  
  /* TEXT */
  .product-card span {
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    letter-spacing: 1px;
    border-top: 2px solid #f0f0f0;
  }
  
  /* CLICKABLE EFFECT */
  .product-card.clickable {
    cursor: pointer;
  }
  
  /* ENHANCED: hover overlay for clickable cards */
  .card-hover-label {
    position: absolute;
    inset: 0;
    background: rgba(152, 4, 4, 0.82);
    color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'League Gothic', Arial, sans-serif;
    opacity: 0;
    transition: opacity 0.22s ease;
    border-radius: 17px;
  }
  .product-card.clickable:hover .card-hover-label {
    opacity: 1;
  }
  
  /* ===== MODAL ENHANCEMENTS ===== */
  .modal-overlay {
    backdrop-filter: blur(3px);
  }
  
  .modal-box {
    animation: modalIn 0.25s cubic-bezier(.4,0,.2,1);
    border: 3px solid #000;
    box-shadow: 8px 8px 0 #000;
  }
  
  @keyframes modalIn {
    from { transform: translateY(20px) scale(0.97); opacity: 0; }
    to   { transform: none; opacity: 1; }
  }
  
  .modal-close-btn {
    background: none;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 17px;
    color: #666;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .modal-close-btn:hover {
    background: #980404;
    color: #fff;
    border-color: #980404;
  }
  
  .modal-price {
    font-size: 20px;
    color: #980404;
    font-family: 'Londrina Solid', cursive;
    letter-spacing: 1px;
    margin: 4px 0;
    font-weight: 600;
  }
  
  .modal-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .modal-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.10) !important;
  }
  
  .modal-close-footer-btn {
    padding: 11px 28px;
    background: #980404;
    color: #fff;
    border: 2.5px solid #000;
    border-radius: 50px;
    font-family: 'League Gothic', Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 3px 3px 0 #000;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .modal-close-footer-btn:hover {
    background: #c40000;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
  }
  
  /* ===== CONTACT SECTION ===== */
  .contact {
    background: #ffffff;
    padding: 90px 40px;
  }
  
  .contact-title {
    text-align: center;
    font-family: 'League Gothic', Arial, sans-serif;
    font-size: 48px;
    color: #980404;
    letter-spacing: 4px;
    margin-bottom: 50px;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  /* Map */
  .contact-map iframe {
    width: 100%;
    height: 380px;
    border: 3px solid #000;
    border-radius: 20px;
    /* ENHANCED: brutal shadow */
    box-shadow: 6px 6px 0 #000;
    display: block;
  }
  
  /* Info */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .contact-text {
    font-size: clamp(17px, 1.8vw, 22px);
    font-family: 'Poppins', sans-serif;
    color: #2A2929;
    line-height: 1.6;
  }
  
  /* ENHANCED: hours badge in contact */
  .contact-hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFD41D;
    border: 2.5px solid #000;
    border-radius: 50px;
    padding: 10px 22px;
    font-family: 'League Gothic', Arial, sans-serif;
    font-size: 19px;
    color: #2A2929;
    letter-spacing: 1.5px;
    box-shadow: 3px 3px 0 #000;
  }
  .contact-hours i {
    color: #980404;
  }
  
  /* Buttons */
  .contact-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-family: 'League Gothic', Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 50px;
    border: 2.5px solid #000;
    /* ENHANCED: brutal shadow */
    box-shadow: 3px 3px 0 #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  /* Facebook */
  .contact-btn.fb {
    background: #1877F2;
    color: #fff;
  }
  
  /* Gmail */
  .contact-btn.mail {
    background: #fff;
    color: #980404;
  }
  
  /* Hover */
  .contact-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
  }
  
  /* ===== FOOTER ===== */
  .footer {
    background: #FFD41D;
    border-top: 2.5px solid #000;
    padding: 18px 40px;
  }
  
  .footer-content {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  /* Logo */
  .footer-logo img {
    width: 70px;
    height: auto;
  }
  
  /* ENHANCED: copyright text */
  .footer-copy {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #980404;
  }
  
  /* Icons area */
  .footer-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }
  
  .footer-label {
    font-family: 'League Gothic', Arial, sans-serif;
    font-size: 14px;
    color: #980404;
    letter-spacing: 1px;
  }
  
  .footer-links {
    display: flex;
    gap: 12px;
  }
  
  .footer-links a {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #980404;
    font-size: 16px;
    text-decoration: none;
    /* ENHANCED: pop shadow */
    box-shadow: 2px 2px 0 #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .footer-links a:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #000;
  }
  
  /* ===== SCROLL TO TOP BUTTON (NEW) ===== */
  .scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: #980404;
    color: #fff;
    border: 2.5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    text-decoration: none;
    box-shadow: 3px 3px 0 #000;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  }
  .scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .scroll-top-btn:hover {
    background: #c40000;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
  }
  
  /* ===== MOBILE RESPONSIVE ===== */
  @media (max-width: 900px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .contact-container {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 640px) {
    /* HERO SECTION */
    .hero {
      grid-template-columns: 1fr;
      padding: 30px 20px;
      gap: 20px;
      border-radius: 16px;
      margin: 16px 12px;
      box-shadow: 4px 4px 0 #000;
    }
  
    .hero-text h1 {
      font-size: 48px;
      -webkit-text-stroke: 1.5px #000;
      text-align: center;
    }
  
    .hero-text p {
      font-size: 18px;
      text-align: center;
    }
  
    .hero-icons {
      justify-content: center;
      gap: 12px;
    }
  
    .hero-icons a {
      width: 44px;
      height: 44px;
      font-size: 18px;
    }
  
    .hero-image img {
      position: relative;
      right: 0;
      bottom: 0;
      width: 100%;
      max-width: 320px;
      display: block;
      margin: auto;
    }
  
    /* ABOUT SECTION */
    .about-container {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
  
    .about-logo img {
      width: 200px;
      height: 200px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .about-text {
      margin-left: 0;
    }
  
    .about-text h2 {
      font-size: 32px;
      margin-left: 0;
    }
  
    .about-text p {
      font-size: 16px;
      max-width: 100%;
      margin: auto;
    }
  
    .hours-badge {
      margin: 18px auto 0;
    }
  
    /* SERVICES SECTION */
    .services {
      padding: 48px 16px;
      border-radius: 0;
      border-left: none;
      border-right: none;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  
    .service-item {
      padding: 20px 10px 16px;
    }
  
    .service-item i {
      font-size: 48px;
    }
  
    .service-item span {
      font-size: 18px;
    }
  
    /* PRODUCTS SECTION */
    .products {
      padding: 56px 16px;
    }
  
    .products-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .product-card {
      height: auto;
    }
  
    .product-card img {
      height: 200px;
    }
  
    .product-card span {
      font-size: 18px;
      padding: 12px 0;
      height: auto;
    }
  
    /* CONTACT SECTION */
    .contact {
      padding: 60px 16px;
    }
  
    .contact-container {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
  
    .contact-map iframe {
      height: 250px;
    }
  
    .contact-info {
      align-items: center;
      gap: 20px;
    }
  
    .contact-text {
      font-size: 17px;
    }
  
    .contact-buttons {
      flex-direction: column;
      gap: 12px;
      align-items: center;
      width: 100%;
    }
  
    .contact-btn {
      font-size: 17px;
      padding: 12px 22px;
      justify-content: center;
      width: 100%;
      max-width: 260px;
    }
  
    /* FOOTER */
    .footer-content {
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-align: center;
    }
  
    .footer-icons {
      align-items: center;
    }
  
    .footer-label {
      font-size: 12px;
    }
  
    .footer-links a {
      width: 34px;
      height: 34px;
      font-size: 14px;
    }
  
    /* TOP & BOTTOM MARQUEE */
    .top-marquee span,
    .bottom-marquee span {
      font-size: 16px;
      padding: 4px 15px;
    }
  
    .bottom-marquee {
      margin-top: 40px;
    }
  
    /* SCROLL TO TOP */
    .scroll-top-btn {
      bottom: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
      font-size: 17px;
    }
  }
  
  /* ===== HAMBURGER ===== */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
  }
  
  .hamburger div {
    width: 100%;
    height: 4px;
    background: #980404;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* ===== MOBILE MENU ===== */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    border-top: 2px solid #000;
    padding: 0 20px;
    position: fixed;
    width: 100%;
    top: 66px;
    left: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
    z-index: 99;
    /* ENHANCED: shadow under menu */
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  }
  
  .mobile-menu.show {
    max-height: 500px;
    padding: 20px;
  }
  
  /* ENHANCED: mobile menu links */
  .mobile-menu a {
    text-decoration: none;
    color: #980404;
    font-size: 28px;
    letter-spacing: 3px;
    padding: 10px 0;
    border-bottom: 1.5px solid #f5f5f5;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-menu a:last-child {
    border-bottom: none;
  }
  .mobile-menu a:hover {
    padding-left: 10px;
    color: #c40000;
  }
  
  @media (max-width: 640px) {
    .nav-left,
    .nav-right {
      display: none;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-center {
      text-align: center;
    }
  }
