/* ===== GLOBAL IMPROVEMENTS ===== */
:root {
  --primary-red: #8b1e1e;
  --primary-orange: #e67e22;
  --dark-bg: #0a0a0a;
  --light-text: #f5f5f5;
  --accent-gold: #d4af37;
  --card-bg: #1a1a1a;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== ENHANCED NAVBAR ===== */
.navbar {
  background: rgb(255, 255, 255) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.navbar-brand img {
  filter: brightness(0.9);
  transition: var(--transition);
}

.navbar-brand:hover img {
  filter: brightness(1);
  transform: scale(1.02);
}

.nav-link {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.2rem !important;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* ===== PROFESSIONAL HERO SECTION ===== */
.hero-section {
  /* background: linear-gradient(135deg, #1a0a0a 0%, #2d1414 50%, #1a0a0a 100%); */
  margin-top: -60px;;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(230, 126, 34, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 50px) scale(1.1);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(0, 0, 0, 0.85);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Enhanced Carousel */
.carousel-inner {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); */
  position: relative;
}

.carousel-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.carousel-item img {
  filter: brightness(0.95) contrast(1.05);
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item.active img {
  transform: scale(1.08);
}

/* Professional Buttons */
.btn-hero-control {
  background: transparent;
  border: 2px solid rgba(230, 126, 34, 0.6);
  color: var(--primary-orange);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-hero-control:hover {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-red)
  );
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
  transform: translateY(-2px);
}

.btn-hero-main {
  background: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--primary-red) 100%
  );
  border: none;
  color: white;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.btn-hero-main:hover::before {
  opacity: 1;
}

.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.5);
}

/* ===== ENHANCED MENU SECTION ===== */
.menu-section {
  min-height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(45, 20, 20, 0.9) 100%
    ),
    url("img/2025-05-07.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.1),
    transparent 70%
  );
  animation: pulse 8s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.menu-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.menu-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 230, 179, 0.9);
  font-weight: 300;
  margin-bottom: 3rem;
}

.btn-order {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  border: 2px solid rgba(230, 126, 34, 0.5);
  color: white;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.btn-order:hover {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-red)
  );
  border-color: transparent;
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.5);
  transform: translateY(-4px);
}

/* ===== PROFESSIONAL ABOUT SECTION ===== */
.about-section {
  /* background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 100%); */
  background-color: white;

  padding: 120px 0;
  position: relative;
}

.about-video {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.about-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
}

.about-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #000000 0%, var(--primary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* ===== ENHANCED CARDS ===== */
.card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(230, 126, 34, 0.3);
}

.card img {
  transition: var(--transition);
  filter: brightness(0.95);
}

.card:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--light-text);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.card-text {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== PROFESSIONAL FOOTER ===== */
footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 100%);
  border-top: 1px solid rgba(230, 126, 34, 0.2);
  padding: 3rem 0 2rem;
}

footer a {
  transition: var(--transition);
  position: relative;
}

footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-orange);
  transition: var(--transition);
}

footer a:hover::after {
  width: 100%;
}

footer .fab {
  transition: var(--transition);
  font-size: 1.3rem;
}

footer .fab:hover {
  color: var(--primary-orange) !important;
  transform: translateY(-3px);
}

/* ===== LOCATION LIST IMPROVEMENTS ===== */
.location-list a {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition);
  padding: 1.2rem 1.5rem;
}

.location-list a:hover {
  background: linear-gradient(
    135deg,
    rgba(230, 126, 34, 0.2),
    rgba(139, 30, 30, 0.2)
  );
  border-color: rgba(230, 126, 34, 0.4);
  transform: translateX(8px);
}

/* ===== RESPONSIVE REFINEMENTS ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .hero-section {
    padding: 60px 0;
  }

  .carousel-inner {
    height: 350px;
    width: 350px;
  }

  .carousel-item img {
    height: 350px;
  }

  .about-section {
    padding: 60px 0;
  }

  .menu-section {
    padding: 60px 20px;
  }
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* ===== SELECTION STYLING ===== */
::selection {
  background: var(--primary-orange);
  color: white;
}

::-moz-selection {
  background: var(--primary-orange);
  color: white;
}

/* ===== LOADING ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* ===== SEARCH INPUT IMPROVEMENTS ===== */
.search-input {
  border-radius: 12px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card-bg);
  color: var(--light-text);
  transition: var(--transition);
  font-size: 1rem;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
  background: rgba(26, 26, 26, 0.9);
}

.search-input::placeholder {
  color: rgba(245, 245, 245, 0.4);
}

/* ===== BURGER CARD IMPROVEMENTS ===== */
.burger-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.burger-card:hover {
  border-color: rgba(230, 126, 34, 0.3);
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.2);
}

/* ===== PLAYLIST IMPROVEMENTS ===== */
.playlist-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.playlist-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(230, 126, 34, 0.2) 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.playlist-img:hover::after {
  opacity: 1;
}
