/* Base & Typography */
:root {
  --primary: #c9a475;
  /* Warm sand/gold */
  --secondary: #1a2c38;
  /* Deep ocean blue */
  --accent: #e67e22;
  /* Sunset orange */
  --text: #333333;
  --bg-light: #f9f9f9;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--secondary);
  margin-bottom: 0.5em;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Nav */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
}

.nav-links a {
  color: var(--secondary);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #b08d60;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white !important;
  border: 1px solid white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-outline:hover {
  background: white;
  color: var(--secondary) !important;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 10s ease;
  /* Subtle zoom effect could be added via JS */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.delay {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About */
.about-section {
  padding: 5rem 5%;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
}

/* Menu Preview */
.menu-preview {
  padding: 5rem 5%;
  background: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 250px;
  overflow: hidden;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-cocktail {
  font-size: 4rem;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.btn-text {
  display: inline-block;
  margin-top: 2rem;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.btn-text:hover {
  border-color: var(--primary);
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

/* Location with Glassmorphism */
.location-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
}

.map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg') no-repeat center center;
  /* Abstract map placeholder */
  opacity: 0.1;
  filter: invert(1);
}

.location-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 900px;
}

.glass-card {
  flex: 1;
  padding: 3rem;
  background: white;
}

.map-frame {
  flex: 1;
  background: #eee;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay-link a {
  background: white;
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--text);
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--secondary);
  color: white;
  padding: 3rem 5%;
  text-align: center;
}

.footer-brand h4 {
  color: white;
  margin: 0;
}

.footer-links {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: white;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive */

/* Reservation Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.3s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: var(--text);
}

.modal-title {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.modal-btn.whatsapp {
  background-color: #25d366;
  color: white;
  border-color: #25d366;
}

.modal-btn.whatsapp:hover {
  background-color: #1ebc59;
}

.modal-btn.phone {
  background-color: white;
  color: var(--secondary);
  border-color: var(--secondary);
}


/* Reviews Section */
.reviews-section {
  padding: 5rem 5%;
  background: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: #f1c40f;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 0.95rem;
}

.review-author {
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-icon {
  width: 20px;
  height: 20px;
}

.lang-switcher {
  display: flex !important;
  gap: 0.5rem;
  margin-left: 1rem;
}

.active-lang {
  font-weight: bold;
  text-decoration: underline;
  color: var(--primary) !important;
}