@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  /* Enhanced, vibrant Color Palette */
  --primary: #d48c45;
  /* Richer, deeper gold */
  --primary-light: #f3d4b1;
  --secondary: #e88d96;
  /* Brighter, more saturated pink */
  --secondary-dark: #cc495b;
  /* Deeper crimson pink */
  --accent: #4a5c50;
  /* Deeper, richer green */
  --accent-light: #7c9384;

  --bg-color: #fdf5f6;
  /* Warmer, softer pink tinted background */
  --text-main: #2b2b2b;
  --text-muted: #555555;

  --glass-bg: rgba(255, 255, 255, 0.85);
  /* Slightly less transparent for better contrast against colorful backgrounds */
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px 0 rgba(232, 141, 150, 0.25);

  --gradient-bg: linear-gradient(135deg, #fdf5f6 0%, #fae6e8 50%, #fef0ef 100%);
  --gradient-gold: linear-gradient(45deg, #d48c45, #ecc599, #d48c45);
  --gradient-pink: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);

  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--accent);
  margin-bottom: 1rem;
}

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-8 {
  margin-top: 2rem;
}

/* Glassmorphism Classes */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(232, 141, 150, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 15px rgba(103, 113, 105, 0.3);
}

.btn-primary:hover {
  background: #505852;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(103, 113, 105, 0.4);
}

.btn-gold {
  background: var(--gradient-gold);
  background-size: 200% auto;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.6);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--accent);
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  /* Space for navbar */
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.7;
}

.shape-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: var(--secondary);
}

.shape-2 {
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  text-align: left;
  z-index: 10;
  padding: 3rem;
  animation: fadeIn 1s ease-out;
}

.hero-image-container {
  position: relative;
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}

.hero-image {
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid white;
  object-fit: cover;
  width: 100%;
  height: 600px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--accent), var(--text-main));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

/* Section Wrapper */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(204, 73, 91, 0.3);
}

.service-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-dark);
}

.service-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Detailed Services Menu Styles */
.service-category {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.category-icon {
  color: var(--primary);
  background: var(--primary-light);
  padding: 8px;
  border-radius: 12px;
  width: 40px;
  height: 40px;
}

.category-header h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--secondary-dark);
}

.category-subtitle {
  color: var(--accent);
  font-style: italic;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  padding-left: 3.5rem;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-item-with-image {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.menu-image {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.menu-content {
  flex: 1;
}

@media (max-width: 768px) {
  .menu-item-with-image {
    flex-direction: column;
  }

  .menu-image {
    width: 100%;
    height: 200px;
    margin-bottom: 0.5rem;
  }
}

.menu-item {
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(228, 186, 191, 0.3);
}

.menu-item.featured {
  background: linear-gradient(to right, white, #fffaf5);
  border-left: 4px solid var(--primary);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px dashed var(--primary-light);
  padding-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

.menu-item-header h4 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text-main);
  flex: 1;
}

.price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

@media (min-width: 481px) {
  .price {
    margin-left: 1rem;
  }
}

.price small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: normal;
}

.menu-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-main);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.badge-featured {
  background: var(--primary);
  color: white;
}

/* Info Section (Hours & Location) */
.info-section {
  background: var(--accent);
  color: white;
  position: relative;
  border-radius: 30px;
  padding: 4rem;
  margin: 4rem 2rem;
  overflow: hidden;
}

.info-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>') repeat;
  opacity: 0.5;
  z-index: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.info-card h3 {
  color: var(--primary-light);
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card p,
.info-card a {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  display: block;
}

.info-card a:hover {
  color: var(--primary-light);
}

/* Footer */
.footer {
  background: var(--bg-color);
  padding: 4rem 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 163, 115, 0.4);
}

.copy {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    padding: 2rem 1.5rem;
  }

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

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

  .hero-image {
    height: 400px;
  }
}

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

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .hero-image {
    height: 300px;
    border-width: 4px;
    border-radius: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--glass-border);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .info-section {
    padding: 3rem 2rem;
    margin: 2rem 1rem;
  }
}