* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #2c2c2c;
  line-height: 1.6;
  background-color: #fefaf5;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background: #1a2a2f;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

.logo span {
  color: #e6b17e;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e6b17e;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Hero buttons - mobile first with spacing */
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Desktop: buttons side by side */
@media (min-width: 769px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  display: inline-block;
  background: #e6b17e;
  color: #1a2a2f;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #d49c63;
}

/* Section Styling */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #e6b17e;
  margin: 0.5rem auto 0;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item-content {
  padding: 1.5rem;
}

.menu-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price {
  color: #e6b17e;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* Contact & Info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-card i {
  font-size: 2rem;
  color: #e6b17e;
  margin-bottom: 1rem;
}

.info-card h3 {
  margin-bottom: 1rem;
}

/* Phone link styling - no blue, proper spacing */
#phone {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

#phone:hover {
  color: #e6b17e;
  text-decoration: underline;
}

/* Ensure consistent spacing after paragraphs in info-card */
.info-card p {
  margin-bottom: 0;
}

/* Hours list styling */
.hours-list {
  list-style: none;
  margin-top: 0.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Form Accessibility */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #666;
}

/* Focus visible for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #e6b17e;
  outline-offset: 2px;
}

/* Sticky Call Button */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e6b17e;
  color: #1a2a2f;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 99;
}

/* Footer */
footer {
  background: #1a2a2f;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .sticky-call {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* ========== IMPROVED ADDITIONS ========== */

/* Skip to content link - fully hidden until focused */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  background: #e6b17e;
  color: #1a2a2f;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.review-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}
.review-stars {
  color: #e6b17e;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.review-text {
  font-style: italic;
  margin: 0.5rem 0;
}
.review-name {
  font-weight: bold;
  color: #1a2a2f;
}

/* Map iframe */
.map-iframe {
  width: 100%;
  height: 250px;
  border: 0;
  margin-top: 0.5rem;
  border-radius: 12px;
}

/* Form status message */
.form-status {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  text-align: center;
}
.form-status.success {
  color: #2e7d32;
}
.form-status.error {
  color: #c62828;
}

/* WhatsApp button adjustments */
.btn.secondary {
  background: white;
  color: #1a2a2f;
  border: 1px solid #e6b17e;
}
.btn.secondary:hover {
  background: #e6b17e;
  color: #1a2a2f;
}

/* Ensure buttons inside info card have margin */
.info-card .btn {
  margin-top: 0.5rem;
}

/* Fix for stacked buttons in contact card on mobile */
@media (max-width: 768px) {
  .info-card .btn {
    width: 100%;
    text-align: center;
  }
}
