@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;500;600&display=swap");

/* Global fix for horizontal scrolling */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

:root {
  --primary-gold: #c9a227; /* Soft antique gold */
  --accent-gold: #b8860b; /* Deeper gold for hovers */
  --dark-bg: #121212; /* Deep charcoal - professional */
  --text-color: #e8e0d0; /* Warm cream text */
  --light-gold: #f2e9d0; /* Hero text */
  --overlay-bg: rgba(18, 18, 18, 0.8);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: radial-gradient(
    circle at center,
    #1a1a1a 0%,
    var(--dark-bg) 100%
  );
  background-color: var(--dark-bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 0 0 0 0 0 0 0 1 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  color: var(--text-color);
  line-height: 1.8;
}

header {
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  padding: 20px 50px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* Hamburger Menu - visible only on mobile */
.hamburger {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--primary-gold);
  padding: 10px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: max-height 0.4s ease, opacity 0.4s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.mobile-menu.active {
  max-height: 500px;
  opacity: 1;
}

.mobile-menu a {
  padding: 18px;
  font-size: 20px;
  width: 100%;
  text-align: center;
  color: var(--primary-gold);
  transition: background 0.3s ease;
}

.mobile-menu a:hover {
  background-color: rgba(201, 162, 39, 0.2);
  color: var(--accent-gold);
}

.logo img {
  height: 80px;
  filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.2));
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 50px;
  position: relative;
}

nav ul li a {
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -6px;
  left: 50%;
  background-color: var(--accent-gold);
  transition: all 0.4s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--accent-gold);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
  left: 0;
}

main {
  margin-top: 120px;
}

section {
  padding: 140px 50px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: var(--primary-gold);
  margin-bottom: 30px;
}

.home-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.9),
    rgba(18, 18, 18, 0.95)
  );
}

.home-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  color: var(--light-gold);
  margin-bottom: 30px;
}

.home-hero p {
  font-size: 24px;
  max-width: 900px;
  color: var(--light-gold);
}

.businesses-grid {
  display: flex;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
}

.business-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: var(--overlay-bg);
  border: 5px solid var(--primary-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.business-circle:hover {
  transform: translateY(-15px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(184, 134, 11, 0.25);
}

.business-circle h3 {
  margin: 20px 0 8px;
  font-size: 26px;
  color: var(--primary-gold);
}

.business-circle p {
  font-size: 16px;
}

#stores-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-content {
  background-color: rgba(18, 18, 18, 0.95);
  padding: 60px;
  border: 3px solid var(--primary-gold);
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  position: relative;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  cursor: pointer;
  color: var(--primary-gold);
}

.close-modal:hover {
  color: var(--accent-gold);
}

/* Fixed footer - full width, content always visible */
footer {
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  padding: 80px 20px 60px; /* More top/bottom padding */
  text-align: center;
  width: 100%;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer-logo img {
  height: 80px;
  filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.2));
  margin-bottom: 40px;
}

.footer-nav ul {
  display: flex;
  gap: 50px;
  margin: 30px 0;
  list-style: none;
  flex-wrap: wrap; /* Wrap on small screens */
  justify-content: center;
}

.footer-nav a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 50%;
  background-color: var(--accent-gold);
  transition: all 0.4s ease;
}

.footer-nav a:hover {
  color: var(--accent-gold);
}

.footer-nav a:hover::after {
  width: 100%;
  left: 0;
}

.copyright {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.8;
}

/* Mobile responsive - Hamburger menu */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    height: 60px;
  }

  /* Hide desktop nav and show hamburger */
  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  main {
    margin-top: 100px;
  }

  .home-hero h1 {
    font-size: 48px;
  }

  section {
    padding: 100px 30px;
  }

  .businesses-grid {
    gap: 80px;
  }

  .business-circle {
    width: 220px;
    height: 220px;
  }

  /* Footer adjustments for mobile */
  footer {
    padding: 60px 20px 50px;
  }

  .footer-nav ul {
    gap: 30px;
    flex-direction: column;
  }
}
