:root {
  --bg: #0b0b0b;
  --panel: #101010;
  --muted: #b8b8b8;
  --text: #f3f3f3;
  --accent: #ff8c00;
  --accent-2: #41c95b;
  --accent-3: #ffd27f;
  --border: rgba(255, 255, 255, 0.08);
  --menu-gradient: linear-gradient(135deg, #ff8c00, #ff4500);
}

body {
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Montserrat";
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* fonts */
.logo {
  font-family: "Kaushan Script";
  font-size: 3.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
}

.nav-links a {
  font-family: Bebas Neue;
  font-size: 2rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  transition: color.2s ease, text-shadow .2s ease;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

.social-nav {
  display: flex;
  justify-content: center;
  gap: .8rem;
}

.social-nav a {
  font-size: 2rem;
  color: var(--text);
  margin-left: .5rem;
}

.social-nav a:hover {
  color: var(--accent);
  transform: scale(1.2);
}

/* navbar wrapper */
.navbar {
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  transition: all .25s ease;
}

.navbar-wrap {
  position: flex;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, .95);
  padding-block: .35rem;
}

.navbar .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .75rem 1rem;
  gap: 1.5rem;
}

/* bottom links bar */
.navbar-links {
  background: #111;
}

.navbar-links .nav-inner {
  flex-wrap: wrap;
}

/* mobile menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, .96);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 6rem 1rem 2rem;
  z-index: 2000;
}

.mobile-drawer a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  display: flex;
  color: var(--text);
  text-decoration: none;
  align-items: center;
  gap: 0.5rem;
}

.mobile-drawer .socials {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.mobile-drawer .socials a {
  font-size: 1.5rem;
  color: var(--text);
}

.mobile-drawer .socials a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

.mobile-drawer.open {
  display: flex;
}

.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 1.75rem;
  cursor: pointer;
}

/* responsive */
@media (max-width: 768px) {
  .nav-links, .social-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* hero */
.location-hero {
  text-align: center;
  padding: 4rem 1rem;
  background: var(--menu-gradient);
  animation: 600% 600%;
  animation: gradientShift 12s ease infinite;
}

.location-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent-3);
}

.location-hero p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* map section */
.location-map {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* CTA Section */
.location-cta {
  text-align: center;
  padding: 2rem 1rem;
}

.location-cta .cta-button {
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}

.location-cta .cta-button:hover {
  transform: scale(1.05);
}

.location-cta p {
  margin-top: 1rem;
  color: var(--text);
  font-size: 1rem;
}

/* footer */
.footer {
  background: linear-gradient(135deg, rgba(16, 16, 16, .95), rgba(10, 10, 10, .95));
  color: var(--muted);
  padding: 4rem 1rem 2rem;
  border-top: 1px solid var(--border);
  box-shaow: 0 -4px 15px rgba(0, 0, 0, .5);
  font-family: "Montserrat";
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: .5rem;
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.footer-col a i {
  font-size: 1.1rem;
  color: var(--accent-3);
  transition: transform .2s ease;
}

.footer-col a:hover {
  color: var(--accent-2);
  text-shadow: 0 0 6px var(--accent-2), 0 0 12px var(--accent-3);
}

.footer-col a:hover i {
  transform: scale(1.2);
}

.footer-copy {
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  .footer-col a {
    justify-content: center;
  }
  
  .footer-col h4 {
    font-size: 1.6rem;
  }
  
  .story-inner {
    grid-template-columns: 1fr;
  }
}
