:root {
  /* Main colors to match gradient */
  --primary: #9678d3;         /* Rich purple from gradient */
  --primary-light: #b19cd9;   /* Lighter purple from gradient */
  --secondary: #b771c8;       /* Teal that complements the blue */
  --secondary-light: #7dcad5; /* Lighter teal */
  --secondary-dark: #a365b3;  /* Darker teal for hover states */
  --catering-dark: #4a8892;  /* Darker purple for hover states */
  --accent: #ffb5c1;          /* Soft pink accent from gradient */
  --accent-light: #ffd3da;    /* Lighter pink for section backgrounds */
  --catering: #5c9ea8;       /* Catering button color */
  
  /* Supporting neutral colors */
  --dark: #444444;            /* Darker text that's easier to read on light backgrounds */
  --light: #fffaf0;           /* Cream background for better contrast */
  --gray: #777777;            /* Medium gray for secondary text */
  --light-gray: #f8f5ff;      /* Very light purple tint for sections */
  
  /* Font families */
  --font-family-main: "Georgia", serif;
  --font-family-heading: "Nunito", "Arial Rounded MT Bold", "Quicksand", sans-serif; /* More playful heading font */
  --font-family-secondary: "Arial", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;

  /* Borders and shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

.location-image img {
    display: block;
    margin: 0 auto;
    width: 20%;
}

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

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


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

body {
  font-family: var(--font-family-main);
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--light);
}

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

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

.location-buttons .btn {
    width: 350px;           /* Fixed width */
    text-align: center;
    white-space: nowrap;    /* Prevents wrapping */
    margin: 0.5rem;
}


.thank-you-buttons {
  text-align: center;          /* center its contents */
}

#returnH,
#viewH {
  display: inline-block;       /* make them respect text-align */
  margin: 0 .5rem;             /* optional horizontal spacing */
}

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

#inquire {
  display: block;
  margin: 1rem auto;  /* 1rem top/bottom, auto left/right */
  width: max-content; /* shrink-to-fit so it doesn’t span the whole row */
}

.hero {
  position: relative;
  overflow: hidden;
  height: 550px; /* fixed desktop height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;

  /* image + dark overlay */
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("/images/misc/reno.jpg") center/cover no-repeat;
}


/* gradient overlay if you prefer to separate it out */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* your centered text/buttons */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}


/* Mobile: full‐screen height instead of 550px */
@media (max-width: 300px) {
  .hero {
    height: 100vh;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero h2 {
    font-size: 1rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-buttons .btn {
    width: 90%;
  }
}


/* absolutely‐center your content */
.hero-content {
  position: absolute;
  inset: 0;               /* shorthand for top/right/bottom/left = 0 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  z-index: 1;             /* above the background */
  color: white;
}



.menu-img {
  width: 100%; /* Zoom out */
  display: block;
  margin: 0 auto; /* Center it */
  border-radius: 12px; /* Optional: add rounding to match card */
}


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


.hero-bg-deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

ul {
  list-style: none;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
    text-align: center;
  font-family: var(--font-family-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--primary); /* Make all headings purple by default */
}

h1 {
  font-size: 2.75rem;
  letter-spacing: -0.5px;
}

h2 {
  margin-top: 50px;
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

/* ====== LAYOUT ====== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.map-section .container {
  margin-top: -150px;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-image: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
  margin: var(--spacing-xs) auto 0;
}

/* ====== BUTTONS ====== */
.btn {
margin-top: 4px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-family-heading);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: #7858c0; /* Darker purple for hover */
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-catering {
  background-color: var(--catering);
  color: white;
}

.btn-catering:hover {
  background-color: var(--catering-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}


.hero-buttons .btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ====== HEADER ====== background-image: linear-gradient(180deg, #ffc0cb 0%, #c1a3e6 100%);*/
header {
  background-image: linear-gradient(180deg, #ffc0cb 0%, #c1a3e6 100%);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;      /* allow wrapping on small screens */
  gap: 1rem;            /* optional spacing when wrapped */
  padding: var(--spacing-sm) 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 60px;
  height: 60px;
  margin-right: var(--spacing-xs);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.logo h1 {
  font-size: 1.6rem;
  margin-bottom: 0;
  color: var(--dark); /* Darker text color for better contrast */
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); /* Add text shadow for readability */
}

.menu {
  display: flex;
  gap: var(--spacing-md);
}

.menu a {
  font-weight: 600;
  font-family: var(--font-family-heading);
  color: var(--dark);
  padding: var(--spacing-xs) var(--spacing-sm);
  position: relative;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3); /* Text shadow for readability */
}

.menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-medium);
  border-radius: 1.5px;
}

.menu a:hover:after,
.menu a.active:after {
  transform: scaleX(1);
}

.menu a:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.menu a.active {
  color: var(--dark);
  font-weight: 700;
}

.phone {
  display: flex;
  align-items: center;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.15);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  color: var(--dark);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.phone i {
  color: var(--dark);
  margin-right: var(--spacing-xs);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  transition: all var(--transition-medium);
  border-radius: 1.5px;
}

/* Add overlay with gradient opacity */
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(150, 120, 211, 0.2), rgba(92, 158, 168, 0.2));
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-family: var(--font-family-secondary);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--spacing-xs);
  color: var(--accent);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 3.25rem;
  margin-bottom: var(--spacing-sm);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

.about {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

/* Add subtle decorative elements */
.about:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--accent-light);
  opacity: 0.3;
  border-radius: 50%;
  z-index: 0;
}

.about:after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background-color: var(--secondary-light);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
  font-size: 2.2rem;
}

.specialties {
  background-color: var(--light-gray); /* Light purple tint */
  position: relative;
  overflow: hidden;
}

.dishes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.dish {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  border: 1px solid rgba(150, 120, 211, 0.1);
}

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

.dish img {
  width: 100%;
  height: 220px;
  transform: none; 
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dish:hover img {
  transform: scale(1.05);
}

.dish h3 {
  padding: var(--spacing-sm) var(--spacing-sm) 0;
  color: var(--primary);
  font-size: 1.5rem;
}

.dish p {
  padding: 0 var(--spacing-sm) var(--spacing-sm);
  color: var(--dark);
}

.menu-link {
  text-align: center;
  margin-top: var(--spacing-md);
}

/* ====== INFO SECTION ====== */
.info {
  background-color: var(--light);
  position: relative;
}

/* Add subtle decorative elements */
.info:before {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  height: 300px;
  width: 300px;
  background-color: var(--primary-light);
  opacity: 0.05;
  border-radius: 50% 0 0 50%;
  z-index: 0;
}

.info-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.hours h2,
.location h2 {
  color: var(--primary);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.hours h2:after,
.location h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 1.5px;
}

.hours ul li {
  display: flex;
  margin-bottom: var(--spacing-xs);
  padding: var(--spacing-xs) 0;
  border-bottom: 1px dashed rgba(150, 120, 211, 0.2);
}

.hours ul li:last-child {
  border-bottom: none;
}

.hours ul li span {
  font-weight: 600;
  min-width: 170px;
  color: var(--primary);
}

.location address {
  font-style: normal;
  margin-bottom: var(--spacing-md);
}

.location address p {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.location address p i {
  color: var(--primary);
  margin-right: var(--spacing-sm);
  min-width: 20px;
  font-size: 1.2rem;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ====== FOOTER ====== */
footer {
  background-image: linear-gradient(180deg, #ffc0cb 0%, #c1a3e6 100%);
  padding: var(--spacing-lg) 0 var(--spacing-sm);
  position: relative;
}

/* Add overlay for better text readability */
footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  margin-right: var(--spacing-xs);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-logo p {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--dark);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--dark);
  border-radius: 50%;
  transition: all var(--transition-medium);
  font-size: 1.2rem;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  position: relative;
  z-index: 2;
  color: var(--dark);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-image {
    margin-bottom: var(--spacing-md);
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    position: relative;
  }

  .menu,
  .phone {
    display: none;
  }

  .menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-image: linear-gradient(180deg, #ffc0cb 0%, #c1a3e6 100%);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-md);
    z-index: 10;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  
  .menu.active a {
    margin-bottom: var(--spacing-xs);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.2);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }

  .dishes {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }
}

/* Add animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.dish {
  animation: float 5s ease-in-out infinite;
  animation-delay: calc(var(--animation-order) * 0.5s);
}

.dish:nth-child(1) {
  --animation-order: 0;
}

.dish:nth-child(2) {
  --animation-order: 1;
}

.dish:nth-child(3) {
  --animation-order: 2;
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for header height */
}