/* ============================================
   THE BURNOUT SOCIETY — STYLES.CSS
   Pure CSS. No frameworks. Dark theme only.
   ============================================ */

/* ============================================
   FONTS & RESET
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600&family=Playfair+Display:wght@700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0D0D0D;
  color: #D4D4D4;
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.9;
}

h1 {
  font-size: clamp(3rem, 10vw, 10rem);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

p {
  font-size: 1rem;
  color: #A3A3A3;
  line-height: 1.7;
}

.highlight {
  color: #6B8C5A;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6B8C5A;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '◯';
  font-size: 0.6rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #6B8C5A;
  color: #0D0D0D;
}

.btn-primary:hover {
  background: #7a9d68;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #6B8C5A;
  color: #6B8C5A;
}

.btn-secondary:hover {
  background: #6B8C5A;
  color: #0D0D0D;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #262626;
  padding: 1rem 5%;
}

.navbar-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo::before {
  content: '●';
  color: #6B8C5A;
  font-size: 0.6rem;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.navbar-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #6B8C5A;
}

.navbar-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #D4D4D4;
  transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0D0D0D;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #6B8C5A;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-shop-Dt0RYBD2.jpg') center/cover no-repeat;
  filter: brightness(0.4);
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #D4D4D4;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

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

/* Stamp Treatment */
.stamp {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 2px solid #6B8C5A;
  padding: 0.8rem 1.5rem;
  transform: rotate(-3deg);
  margin-top: 1rem;
  color: #6B8C5A;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 6rem 5%;
  position: relative;
}

.section-grain {
  position: relative;
}

.section-grain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence baseFrequency="0.9" numOctaves="4"/></filter><rect width="200" height="200" filter="url(%23n)" opacity="0.05"/></svg>');
  pointer-events: none;
  z-index: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

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

.card {
  background: #1A1A1A;
  border: 1px solid #262626;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #6B8C5A;
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

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

.card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
}

.card p {
  margin-bottom: 1rem;
}

.card-price {
  font-size: 1.2rem;
  color: #6B8C5A;
  font-weight: 600;
}

/* ============================================
   REVIEWS
   ============================================ */
.review-card {
  background: #1A1A1A;
  border-left: 3px solid #6B8C5A;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-stars {
  color: #6B8C5A;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 0.8rem;
  color: #D4D4D4;
}

.review-author {
  font-size: 0.9rem;
  color: #6B8C5A;
  font-weight: 600;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-tabs {
  position: sticky;
  top: 80px;
  background: #0D0D0D;
  border-bottom: 1px solid #262626;
  padding: 1rem 0;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  z-index: 100;
  margin-bottom: 3rem;
}

.menu-tab {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.menu-tab.active {
  color: #6B8C5A;
  border-bottom-color: #6B8C5A;
}

.menu-section {
  margin-bottom: 5rem;
}

.menu-section h2 {
  margin-bottom: 2rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #262626;
}

.menu-item-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.menu-item-price {
  font-size: 1.3rem;
  color: #6B8C5A;
  font-weight: 600;
}

.menu-note {
  background: #1A1A1A;
  border: 1px solid #262626;
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.map-container {
  width: 100%;
  height: 450px;
  border: 1px solid #262626;
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hours-item {
  background: #1A1A1A;
  border: 1px solid #262626;
  padding: 1rem;
}

.hours-item strong {
  color: #6B8C5A;
}

/* ============================================
   DELIVERY PAGE
   ============================================ */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.delivery-card {
  background: #1A1A1A;
  border: 1px solid #262626;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
}

.delivery-card:hover {
  border-color: #6B8C5A;
  transform: translateY(-5px);
}

.delivery-card h3 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0D0D0D;
  border-top: 1px solid #262626;
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #6B8C5A;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: #A3A3A3;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #6B8C5A;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  border-color: #6B8C5A;
  background: #6B8C5A;
  color: #0D0D0D;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #262626;
  font-size: 0.85rem;
  color: #A3A3A3;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .two-column,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

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

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

  .menu-tabs {
    gap: 1rem;
  }

  section {
    padding: 4rem 5%;
  }
}
