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

/* Color Variables & Styling Tokens */
:root {
  /* HSL Color System */
  --hue: 340; /* Rose Hue */
  --hue-accent: 43; /* Gold Hue */
  
  --primary: hsl(var(--hue), 80%, 60%);
  --primary-light: hsl(var(--hue), 80%, 93%);
  --primary-dark: hsl(var(--hue), 80%, 40%);
  
  --accent: hsl(var(--hue-accent), 75%, 55%);
  --accent-light: hsl(var(--hue-accent), 75%, 90%);
  
  --bg-dark: hsl(220, 20%, 10%);
  --bg-dark-soft: hsl(220, 20%, 14%);
  --bg-light: hsl(var(--hue), 20%, 98%);
  --bg-light-soft: hsl(var(--hue), 25%, 95%);
  
  --text-dark: hsl(220, 25%, 15%);
  --text-light: hsl(220, 20%, 90%);
  --text-muted: hsl(220, 15%, 50%);
  
  --white: #ffffff;
  --black: #000000;
  
  /* Glassmorphism & Shadow Tokens */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(190, 80, 120, 0.08);
  --glass-bg-dark: rgba(20, 22, 28, 0.75);
  --glass-border-dark: rgba(255, 255, 255, 0.08);
  --glass-shadow-dark: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --card-shadow-hover: 0 20px 40px rgba(190, 80, 120, 0.12);
  
  /* Font Families */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Transition curve */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout */
  --header-height: 80px;
  --container-width: 1200px;
}

/* Dark Mode Overrides (Optional / Default style is highly luxurious off-white & pink-rose theme with dark slate footer) */
body.dark-theme {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
  border: 2px solid var(--bg-light-soft);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-dark);
}

.logo-accent {
  color: var(--primary);
  font-style: italic;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

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

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

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(220, 80, 120, 0.3);
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 80, 120, 0.45);
  color: var(--white);
}

.phone-icon {
  animation: wiggle 2s infinite;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, hsl(var(--hue), 60%, 96%) 0%, var(--bg-light) 90%);
  position: relative;
  overflow: hidden;
}

/* Floating decorative bubbles */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  opacity: 0.6;
}

.hero::after {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  opacity: 0.4;
  animation: float-slow 12s ease-in-out infinite alternate;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up-in 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(220, 80, 120, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 80, 120, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--primary-light);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
}

.btn-secondary:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  animation: scale-up-in 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
}

.hero-blob {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 40px rgba(190, 80, 120, 0.2);
  border: 6px solid var(--white);
  animation: morph-blob 8s ease-in-out infinite alternate;
}

.hero-floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: float 4s ease-in-out infinite alternate;
}

.hero-floating-card.c1 {
  top: 10%;
  left: -20px;
}

.hero-floating-card.c2 {
  bottom: 15%;
  right: -20px;
  animation-delay: 1.5s;
}

.card-icon {
  font-size: 1.5rem;
  background: var(--primary-light);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-info h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FEATURES / ABOUT SECTION
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header .subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.section-header .title {
  font-size: 2.8rem;
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 28px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  color: var(--white);
  transform: rotate(8deg);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   SERVICES GRID (HOME PREVIEW & SERVICES PAGE)
   ========================================================================== */
.services-highlight {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-soft) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.service-img-container {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img-container img {
  transform: scale(1.1);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-body {
  padding: 30px;
}

.service-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--bg-light-soft);
  padding-top: 20px;
}

.service-price {
  font-family: var(--font-body);
}

.service-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.service-price .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.btn-text {
  font-weight: 600;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-text::after {
  content: '→';
  transition: var(--transition-fast);
}

.service-card:hover .btn-text {
  color: var(--primary);
}

.service-card:hover .btn-text::after {
  transform: translateX(4px);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
  background: radial-gradient(circle at 90% 80%, hsl(var(--hue), 50%, 94%) 0%, var(--bg-light) 70%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255,255,255,0.7);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.stars {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.client-details h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.client-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BOOKING & CONTACT PAGE
   ========================================================================== */
.booking-page-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-card-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(0,0,0,0.01);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.info-details p, .info-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

/* Map Embed Styling */
.map-wrapper {
  margin-top: 30px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 4px solid var(--white);
  height: 300px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Booking Form */
.booking-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.01);
}

.booking-form-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.booking-form-wrapper p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--bg-light-soft);
  border: 2px solid transparent;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(220, 80, 120, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 16px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(220, 80, 120, 0.3);
  transition: var(--transition-smooth);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 80, 120, 0.45);
}

.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  border: 1px solid #c3e6cb;
}

/* ==========================================================================
   SERVICES PAGE DETAILED CONTENT
   ========================================================================== */
.services-section {
  padding-top: calc(var(--header-height) + 40px);
}

.pricing-menu {
  margin-top: 60px;
}

.menu-category {
  margin-bottom: 60px;
}

.menu-category h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.menu-category h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.menu-item {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.01);
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.menu-details h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.menu-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.menu-pricing {
  text-align: right;
}

.menu-pricing .price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.menu-pricing .duration {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--glass-border-dark);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .logo {
  color: var(--white);
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.4);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 340px;
}

.footer-links h3, .footer-contact h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-list .icon {
  font-size: 1.1rem;
}

.contact-list .text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.contact-list a.text:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.developer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.dev-name {
  color: var(--primary-light);
  font-weight: 600;
  position: relative;
}

.dev-name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--primary);
}

/* ==========================================================================
   SCROLL ANIMATION TRIGGERS
   ========================================================================== */
.fade-up-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ANIMATION KEYFRAMES
   ========================================================================== */
@keyframes fade-up-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-up-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  5% { transform: rotate(-10deg); }
  10% { transform: rotate(12deg); }
  15% { transform: rotate(-10deg); }
  20% { transform: rotate(9deg); }
  25% { transform: rotate(0); }
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-10px); }
}

@keyframes float-slow {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(20px, 15px) rotate(10deg); }
}

@keyframes morph-blob {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 992px) {
  section {
    padding: 70px 0;
  }
  
  .hero {
    min-height: auto;
    padding: 140px 0 70px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-desc {
    margin: 0 auto 30px auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-blob {
    max-width: 350px;
  }
  
  .booking-page-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-header .title {
    font-size: 2.2rem;
  }
  
  /* Navigation Mobile Toggle */
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-btn {
    width: 80%;
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta a {
    width: 100%;
    justify-content: center;
  }
  
  .booking-form-wrapper {
    padding: 24px;
  }
}
