/* style.css – Luxury dark theme, gold/amber/neon red */
:root {
  --bg-deep: #0f0f0f;
  --bg-soft: #1a1a1a;
  --gold: #d4af37;
  --amber: #c49a6c;
  --neon-red: #ff4d4d;
  --text-light: #f0f0f0;
  --text-dim: #aaaaaa;
  --glass-bg: rgba(15, 15, 15, 0.7);
  --glass-border: rgba(212, 175, 55, 0.15);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.7);
  --glow-gold: 0 0 15px rgba(212, 175, 55, 0.6);
  --glow-red: 0 0 15px rgba(255, 77, 77, 0.5);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
}

body {
  font-family: var(--font-sans);
  color: var(--text-light);
  background-color: var(--bg-deep);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* hidden default, custom cursor visible on desktop */
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* Custom cursor (desktop only) */
.custom-cursor {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 20px var(--gold);
  display: none;
}

@media (min-width: 1025px) {
  .custom-cursor {
    display: block;
  }
}

/* Glass header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 2rem;
  transition: background 0.3s, backdrop-filter 0.3s;
  background: transparent;
}

.site-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

.logo-since {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--amber);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-red);
  box-shadow: var(--glow-red);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-call {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: var(--glow-gold);
  border-color: var(--gold);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* Hero slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  padding: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.hero-title span {
  display: block;
  overflow: hidden;
}

.text-reveal {
  animation: revealUp 1s forwards;
}

@keyframes revealUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  color: var(--amber);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #b38f40;
  box-shadow: var(--glow-gold);
  transform: scale(1.05);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(25deg);
  transition: 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: var(--glow-gold);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: var(--glow-gold);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--gold);
  box-shadow: var(--glow-gold);
  transform: scale(1.3);
}

/* About section */
.about-section {
  padding: 8rem 2rem;
  background: var(--bg-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.3s;
}

.about-image:hover {
  transform: perspective(1000px) rotateY(2deg) rotateX(1deg);
}

.about-image img {
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.about-text {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.animated-underline {
  width: 150px;
  height: 3px;
  background: var(--neon-red);
  box-shadow: var(--glow-red);
  position: relative;
  overflow: hidden;
}

.animated-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: slideUnderline 3s infinite;
}

@keyframes slideUnderline {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Cuisine cards */
.cuisine-section {
  padding: 6rem 2rem;
  background: linear-gradient(145deg, var(--bg-deep) 0%, #1a1a1a 100%);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.cuisine-card {
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  transition: transform 0.2s, box-shadow 0.3s;
  transform-style: preserve-3d;
  cursor: pointer;
  border: 1px solid rgba(212,175,55,0.2);
}

.cuisine-card:hover {
  box-shadow: 0 30px 60px -10px rgba(212,175,55,0.4);
  border-color: var(--gold);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
}

.card-overlay h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px black;
  letter-spacing: 2px;
}

/* Menu grid */
.menu-section {
  padding: 6rem 2rem;
  background: var(--bg-deep);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.menu-item {
  background: #1e1e1e;
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border: 1px solid transparent;
}

.menu-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(212,175,55,0.2);
}

.menu-item img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-item:hover img {
  transform: scale(1.05);
}

.item-info {
  padding: 1.8rem;
}

.item-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
}

.item-info p {
  color: var(--text-dim);
  margin: 0.5rem 0;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neon-red);
  text-shadow: var(--glow-red);
}

/* Parallax experience */
.parallax-section {
  height: 500px;
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: white;
  text-shadow: 0 0 30px var(--gold);
  letter-spacing: 4px;
}

.glowing-divider {
  width: 200px;
  height: 3px;
  background: var(--gold);
  margin: 2rem auto 0;
  box-shadow: 0 0 20px var(--gold);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.7;
    box-shadow: 0 0 10px var(--gold);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 30px var(--gold);
  }
  100% {
    opacity: 0.7;
    box-shadow: 0 0 10px var(--gold);
  }
}

/* Customer reviews inside parallax */
.customer-reviews {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 30px;
  border: 1px solid var(--glass-border);
}

.reviews-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-shadow: var(--glow-gold);
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.review-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 1.8rem;
  max-width: 300px;
  text-align: left;
  transition: var(--transition);
}

.review-item:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-5px);
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-author {
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.review-rating {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* Gallery */
.gallery-section {
  padding: 6rem 2rem;
  background: var(--bg-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(212,175,55,0.3);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(212,175,55,0.2);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border: 3px solid var(--gold);
  border-radius: 20px;
  box-shadow: 0 0 50px var(--gold);
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 50px;
  color: var(--gold);
  font-size: 4rem;
  cursor: pointer;
  transition: 0.3s;
}

.close-lightbox:hover {
  color: var(--neon-red);
  transform: rotate(90deg);
}

/* Reservation form */
.reservation-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.glass-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.glass-form input,
.glass-form select,
.glass-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 1.2rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.glass-form textarea {
  border-radius: 30px;
  resize: vertical;
}

.glass-form .submit-btn {
  background: var(--gold);
  color: var(--bg-deep);
  padding: 1.2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.glass-form .submit-btn:hover {
  background: #b38f40;
  box-shadow: var(--glow-gold);
  transform: scale(1.02);
}

/* Contact */
.contact-section {
  padding: 6rem 2rem;
  background: var(--bg-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.contact-info a {
  color: var(--amber);
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: var(--glow-gold);
  transform: scale(1.1);
}

.map-container {
  border-radius: 30px;
  overflow: hidden;
  height: 350px;
  border: 2px solid var(--gold);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: #25d366;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Section titles */
.section-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  text-align: center;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 2rem;
  text-shadow: var(--glow-gold);
}

/* scroll reveal initial state */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Footer styles (added per instruction 2) */
.site-footer {
  background: #0a0a0a;
  border-top: 2px solid var(--gold);
  padding: 3rem 2rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo .logo-text {
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--gold);
  letter-spacing: 4px;
  text-shadow: var(--glow-gold);
}

.footer-address {
  margin-top: 0.5rem;
  color: var(--amber);
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--text-light);
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 1.5rem;
  width: 100%;
}

/* Responsive adjustments (optional) */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-links a {
    display: inline-block;
    margin: 0.3rem;
  }
}