/* Custom CSS for HomeStyle Expo */

/* Scrollbar Hide Utility */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hero Section Background */
/* If styles.css is inside a 'css' folder */
/* styles.css is inside the 'css' folder */
.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/img/hero1.png');
    background-size: cover;
    background-position: center;
}

/* Section Divider (Note: This class is defined but not used in the provided HTML body) */
.section-divider {
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, white 50%), linear-gradient(to top right, white 49%, transparent 50%);
}

/* Marquee Animation for Partners Section */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee 20s linear infinite;
    display: inline-block;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
  }

  .gallery img:hover {
    transform: scale(1.05);
  }

  .popup {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
  }

  .popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
  }

  .popup:target {
    display: flex;
  }

  .popup span {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }

        .fun-facts {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .fun-facts h2 {
            font-size: 2rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 40px;
            position: relative;
        }
        .fun-facts h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: #f5a623;
        }
        .fun-facts h2 .dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #f5a623;
            border-radius: 50%;
            margin: 0 20px;
            vertical-align: middle;
        }
        .stats {
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
        }
        .stat {
            text-align: center;
        }
        .stat svg {
            width: 50px;
            height: 50px;
            fill: #f5a623;
            margin-bottom: 20px;
        }
        .stat .number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
        }
        .stat .label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #f5a623;
            margin-top: 10px;
        }

        /* Footer Base */
          .site-footer {
            background-color: #D3D3D3;
            color: #000;
            padding: 3rem 0;
          }

          .site-footer .footer-section {
            padding: 1.5rem;
          }

          .site-footer .footer-logo {
            width: 100%;
            margin-bottom: 1rem;
          }

          .site-footer p {
            color: rgba(0, 0, 0, 0.9);
            line-height: 1.6;
            font-size: 0.95rem;
          }

          .site-footer h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #d1130c;
          }

          .site-footer ul {
            list-style: none;
            padding: 5;
            margin: 0;
          }

          .site-footer ul li a {
            color: rgba(0, 0, 0, 0.9);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
          }

          .site-footer ul li a:hover {
            color: #d1130c;
          }

          /* Social Icons */
          .social-icons {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
          }

          .social-icons a {
            color: #000;
            transition: color 0.3s ease;
          }

          .social-icons a:hover {
            color: #FF6600;
          }

          /* Contact Info */
          .contact-info {
            font-size: 0.875rem;
            color: rgba(0, 0, 0, 0.9);
            line-height: 1.6;
          }

          .map-section {
            width: 100%;
            position: relative;
            overflow: hidden;
          }

          .map-section iframe {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
          }

          .footer-bottom {
            background-color: #000;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            flex-wrap: wrap;
            text-align: center;
          }

          .footer-bottom p {
            margin: 0;
            font-size: 14px;
          }

          .social-links {
            display: flex;
            gap: 15px;
          }

          .social-links a {
            color: #fff;
            font-size: 18px;
            transition: color 0.3s ease;
          }

          .social-links a:hover {
            color: #C41E3A; /* hover red accent */
          }

          @keyframes blink-red-white {
            0%, 100% {
              background-color: #d1130c;
              color: white;
            }
            50% {
              background-color: white;
              color: #d1130c;
            }
          }

          /* Alternate blinking for each button */
          .visitor-blink {
            animation: blink-red-white 3.5s infinite;
          }

          .exhibitor-blink {
            animation: blink-red-white 3.5s infinite;
            animation-delay: 1s; /* starts halfway to alternate */
          }

          /* Hover overrides blinking */
          .visitor-blink:hover,
          .exhibitor-blink:hover {
            background-color: #FF2400 !important;
            color: white !important;
            animation: none !important;
          }

          /* NAVBAR BASE */
        .navbar {
            width: 100%;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3rem;
            background-color: #ffffff;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            font-family: 'Inter Tight', sans-serif;
        }

        /* LOGO */
        .navbar-logo {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #111;
            text-transform: uppercase;
        }

        /* NAV LINKS CONTAINER */
        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 2.25rem;
        }

        /* NAV LINKS */
        .navbar-menu a {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #222;
            text-decoration: none;
            padding: 6px 0;
            position: relative;
            transition: color 0.2s ease;
        }

        /* HOVER UNDERLINE EFFECT */
        .navbar-menu a::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0%;
            height: 2px;
            background-color: #ff2400;
            transition: width 0.25s ease;
        }

        .navbar-menu a:hover {
            color: #ff2400;
        }

        .navbar-menu a:hover::after {
            width: 100%;
        }
