/* ==========================================================================
   GLOBAL RESET & BASE
   ========================================================================== */

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

body {
  font-family: "Inter", sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ==========================================================================
   SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.gold {
  color: #d4af37;
}
.bg-gold {
  background-color: #d4af37;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-family: "Playfair Display", serif;
}
h3 {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
}
p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-gold,
.btn-solid-gold {
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.8rem, 2vw, 1rem);
  cursor: pointer;
  text-align: center;
}

.btn-gold {
  background: transparent;
  border: 1.5px solid #d4af37;
  color: #d4af37;
}
.btn-gold:hover {
  background: #d4af37;
  color: #0a0a0a;
}

.btn-solid-gold {
  background: #d4af37;
  border: 1.5px solid #d4af37;
  color: #0a0a0a;
}
.btn-solid-gold:hover {
  background: transparent;
  color: #d4af37;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #d4af37 40%,
    #ffffff 60%,
    #d4af37 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s linear infinite;
}
.logo span {
  color: #d4af37;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
  transition: 0.3s;
  font-size: clamp(0.8rem, 2vw, 1rem);
  position: relative;
  padding: 5px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: #d4af37;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #d4af37;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  min-width: 250px;
  position: relative;
  z-index: 3;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ==========================================================================
   HERO SLIDESHOW
   ========================================================================== */

.hero-slideshow {
  flex: 1;
  min-width: 250px;
  position: relative;
  height: clamp(300px, 45vw, 450px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(212, 175, 55, 0.15);
}

/* Left overlay */
.hero-slideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.08) 60%,
    transparent 100%
  );
  z-index: 4;
  pointer-events: none;
}

/* Bottom overlay */
.hero-slideshow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  z-index: 4;
  pointer-events: none;
}

/* --- Slides --- */

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide.leaving {
  opacity: 0;
  visibility: visible;
  z-index: 3;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(0.92);
  will-change: transform;
}

/* Ken Burns animations per slide */
.slide.active img {
  animation: kb-1 8s ease-in-out forwards;
}
.slide:nth-child(2).active img {
  animation-name: kb-2;
}
.slide:nth-child(3).active img {
  animation-name: kb-3;
}
.slide:nth-child(4).active img {
  animation-name: kb-4;
}

@keyframes kb-1 {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.18) translate3d(-1%, -1%, 0);
  }
}
@keyframes kb-2 {
  from {
    transform: scale(1.12) translate3d(1%, 0, 0);
  }
  to {
    transform: scale(1.02) translate3d(-1%, 1%, 0);
  }
}
@keyframes kb-3 {
  from {
    transform: scale(1.03) translate3d(-1%, 0, 0);
  }
  to {
    transform: scale(1.15) translate3d(1%, -1%, 0);
  }
}
@keyframes kb-4 {
  from {
    transform: scale(1.1) translate3d(0, 1%, 0);
  }
  to {
    transform: scale(1.02) translate3d(0, -1%, 0);
  }
}

/* --- Slide Caption --- */

.slide-caption {
  position: absolute;
  bottom: 28px;
  left: 24px;
  z-index: 10;
}
.slide-caption-tag {
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  letter-spacing: 2px;
}
.slide-caption-title {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

.slide-caption-tag,
.slide-caption-title {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.slide.active .slide-caption-tag,
.slide.active .slide-caption-title {
  opacity: 1;
  transform: translateY(0);
}

/* --- Slide Counter --- */

.slide-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
}
.slide-counter .current {
  color: #d4af37;
  font-size: 15px;
  font-weight: 700;
}

/* --- Progress Bar --- */

.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #d4af37;
  z-index: 10;
  transition: none;
}

/* --- Dots --- */

.slide-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.35s ease;
}
.dot.active {
  background: #d4af37;
  width: 22px;
  border-radius: 4px;
  border-color: #d4af37;
}

/* --- Nav Arrows --- */

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  color: #d4af37;
  width: clamp(32px, 5vw, 44px);
  height: clamp(32px, 5vw, 44px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.slide-nav:hover {
  background: #d4af37;
  color: #0a0a0a;
  transform: translateY(-50%) scale(1.08);
}
.slide-prev {
  left: 12px;
}
.slide-next {
  right: 12px;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: #d4af37;
  margin-bottom: 48px;
  letter-spacing: 1px;
}

/* ==========================================================================
   MENU & TESTIMONIAL CARDS
   ========================================================================== */

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

.menu-card,
.testi-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow:
    0 0 0 rgba(212, 175, 55, 0),
    0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}
.menu-card:hover,
.testi-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.menu-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.menu-card p {
  color: #b0b0b0;
  line-height: 1.7;
}

.menu-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.price {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #d4af37;
}

.badge {
  position: absolute;
  top: -15px;
  right: 16px;
  left: 50%;
  transform: translateX(-50%);

  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);

  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  backdrop-filter: blur(10px);
}

/* --- GALLERY --- */

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

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  border-color: #d4af37;
}

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

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.about-text,
.about-img {
  flex: 1;
  min-width: 250px;
}
.about-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: #050505;
  padding: 48px 0 24px;
  border-top: 1px solid #1f1f1f;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col {
  flex: 1;
  min-width: 150px;
}

.social-icons a {
  color: #ccc;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #d4af37;
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #1a1a1a;
  font-size: 0.8rem;
}

/* ==========================================
   CONTACT
   ==========================================*/

.contact-desc {
  margin: 1rem 0 2rem;
  color: #b0b0b0;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;

  padding: 1rem;

  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;

  transition: 0.3s;
}

.info-item i {
  color: #d4af37;
  font-size: 1.1rem;
}

.info-item:hover {
  border-color: #d4af37;
}

/* ==========================================================================
   RESPONSIVE — TABLET (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 20px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: #0a0a0a;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    gap: 1.5rem;
    transition: 0.3s;
    z-index: 999;
    border-right: 1px solid #d4af37;
  }
  .nav-links.active {
    left: 0;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 5rem;
    padding-top: auto;
    padding-bottom: auto;
  }
  .hero-buttons {
    justify-content: center;
  }

  .hero-slideshow {
    width: 100%;
    min-width: unset;
    flex: none;
    height: 300px;
  }

  .about-grid {
    flex-direction: column;
    text-align: center;
  }

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

  section {
    padding: 40px 0;
  }

  .slide-caption {
    left: 16px;
    bottom: 16px;
  }
  .slide-dots {
    bottom: 12px;
    right: 12px;
  }
}

.hero-content h1 {
  line-height: 1.4;
  margin-bottom: 12px;
}

.hero-content p {
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ==========================================================================
   RESPONSIVE — MOBILE (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn-gold,
  .btn-solid-gold {
    padding: 8px 16px;
  }

  .menu-card,
  .testi-card {
    padding: 1.2rem;
    position: relative;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .section-subtitle {
    margin-bottom: 32px;
  }

  .hero-slideshow {
    border-radius: 16px;
    height: 260px;
  }

  .slide-nav {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  .slide-prev {
    left: 6px;
  }
  .slide-next {
    right: 6px;
  }

  .slide-counter {
    top: 12px;
    right: 12px;
    font-size: 10px;
  }
}
