/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #1a1a1a;
  --neon-lime: #a3e635;
  --warm-gray: #f5f5f4;
  --white: #ffffff;
  --dark-gray: #2a2a2a;
  --medium-gray: #4a4a4a;
  --light-gray: #e5e5e5;
  --lime-dark: #7cc41e;
  --lime-glow: rgba(163, 230, 53, 0.15);
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--charcoal);
  color: var(--warm-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background-color var(--transition), padding var(--transition),
    box-shadow var(--transition);
}

.header.scrolled {
  background-color: rgba(26, 26, 26, 0.97);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.logo span {
  color: var(--neon-lime);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--warm-gray);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--neon-lime);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-lime);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.5) 0%,
    rgba(26, 26, 26, 0.7) 50%,
    rgba(26, 26, 26, 0.95) 100%
  );
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero h1 span {
  color: var(--neon-lime);
}

.hero .tagline {
  font-size: 1.3rem;
  color: var(--neon-lime);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(245, 245, 244, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--neon-lime);
  color: var(--charcoal);
}

.btn-primary:hover {
  background-color: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(163, 230, 53, 0.3);
}

.btn-outline {
  border: 2px solid var(--neon-lime);
  color: var(--neon-lime);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--neon-lime);
  color: var(--charcoal);
  transform: translateY(-2px);
}

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

/* ===== SECTIONS ===== */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.section-header h2 span {
  color: var(--neon-lime);
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(245, 245, 244, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--neon-lime);
  margin: 1rem auto;
}

/* ===== BRAND CARDS ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.brand-card {
  background-color: var(--dark-gray);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(163, 230, 53, 0.08);
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(163, 230, 53, 0.1);
  border-color: rgba(163, 230, 53, 0.2);
}

.brand-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.brand-card h3 {
  font-size: 1.3rem;
  color: var(--neon-lime);
  margin-bottom: 0.5rem;
}

.brand-card p {
  font-size: 0.95rem;
  color: rgba(245, 245, 244, 0.7);
}

/* ===== HIGHLIGHTS / FEATURES ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.highlight-card:hover img {
  transform: scale(1.05);
}

.highlight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
}

.highlight-overlay h3 {
  font-size: 1.2rem;
  color: var(--neon-lime);
  margin-bottom: 0.3rem;
}

.highlight-overlay p {
  font-size: 0.9rem;
  color: rgba(245, 245, 244, 0.8);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 7rem 0 1rem;
}

.breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb-list a {
  color: var(--neon-lime);
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list .separator {
  color: var(--medium-gray);
}

.breadcrumb-list .current {
  color: var(--warm-gray);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.4),
    rgba(26, 26, 26, 0.9)
  );
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--white);
}

.page-hero h1 span {
  color: var(--neon-lime);
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(245, 245, 244, 0.8);
  margin-top: 0.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--neon-lime);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: rgba(245, 245, 244, 0.8);
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ===== MENU SECTION ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--medium-gray);
  background: transparent;
  color: var(--warm-gray);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.9rem;
}

.menu-tab:hover,
.menu-tab.active {
  border-color: var(--neon-lime);
  color: var(--neon-lime);
  background-color: var(--lime-glow);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

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

.menu-item {
  background-color: var(--dark-gray);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(163, 230, 53, 0.05);
  transition: border-color var(--transition);
}

.menu-item:hover {
  border-color: rgba(163, 230, 53, 0.15);
}

.menu-item-info h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.menu-item-info p {
  font-size: 0.85rem;
  color: rgba(245, 245, 244, 0.6);
}

.menu-item-info .brand-tag {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--neon-lime);
  border: 1px solid rgba(163, 230, 53, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  margin-top: 0.4rem;
}

.menu-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--neon-lime);
  white-space: nowrap;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(26, 26, 26, 0.3);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(26, 26, 26, 0.8);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--neon-lime);
  color: var(--charcoal);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--dark-gray);
  border: 1px solid var(--medium-gray);
  border-radius: 10px;
  color: var(--warm-gray);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon-lime);
}

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

.contact-info-card {
  background-color: var(--dark-gray);
  border-radius: 16px;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.4rem;
  color: var(--neon-lime);
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lime-glow);
  border-radius: 10px;
}

.contact-info-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: rgba(245, 245, 244, 0.7);
}

.contact-info-item a:hover {
  color: var(--neon-lime);
}

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

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--warm-gray);
  transition: all var(--transition);
}

.social-link:hover {
  background-color: var(--neon-lime);
  color: var(--charcoal);
}

/* ===== MAP ===== */
.map-container {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== INFO GRID (about page) ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.info-card {
  background-color: var(--dark-gray);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(163, 230, 53, 0.08);
}

.info-card .icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.info-card h4 {
  font-size: 1rem;
  color: var(--neon-lime);
  margin-bottom: 0.3rem;
}

.info-card p {
  font-size: 0.9rem;
  color: rgba(245, 245, 244, 0.7);
}

/* ===== EVENTS SECTION ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background-color: var(--dark-gray);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--neon-lime);
  transition: transform var(--transition);
}

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

.event-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.9rem;
  color: rgba(245, 245, 244, 0.7);
}

/* ===== FOOTER ===== */
.footer {
  background-color: #111111;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(163, 230, 53, 0.1);
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245, 245, 244, 0.6);
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

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

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(245, 245, 244, 0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--neon-lime);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 244, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(245, 245, 244, 0.5);
}

.footer-bottom .social-links {
  margin-top: 0;
}

.footer-bottom .social-link {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .page-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right var(--transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .gallery-item {
    height: 220px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: 3rem 0;
  }
}
