:root {
  --primary-color: #2c3e50;
  --accent-color: #e67e22;
  --bg-color: #f9f9f9;
  --text-color: #333;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

header {
  background: url('../images/La_Costa.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

nav {
  background: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
}

section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: scale(1.03);
}

.menu-item h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.about {
  text-align: center;
}

.about h2 {
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.contact {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem;
}

.contact p {
  margin: 0.5rem 0;
}

footer {
  background: #1a252f;
  color: #aaa;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.special-offer {
  background: var(--accent-color);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  margin: 3rem auto;
  border-radius: 8px;
}

.offer-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.offer-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.offer-btn {
  background: white;
  color: var(--accent-color);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.offer-btn:hover {
  background: #f3f3f3;
}

.gallery {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.gallery-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-images img {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery-images img:hover {
  transform: scale(1.03);
}

.menu-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.menu-item p {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }
}

/* General Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}

h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-top: 40px;
  font-size: 2.5rem;
  color: #2c3e50;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2c3e50;
  border-bottom: 2px solid #f39c12;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

h4 {
  font-size: 1.4rem;
  color: #34495e;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #7f8c8d;
}

strong {
  color: #f39c12;
}

/* Menu Section Styling */
#menu {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

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

.menu-item {
  padding: 15px 0;
  border-bottom: 1px solid #ecf0f1;
}

.menu-item:last-child {
  border-bottom: none;
}

/* Appetizers, Main Courses, Desserts, etc. */
.menu-category h3 {
  font-size: 1.8rem;
  color: #f39c12;
  margin-bottom: 10px;
}

.menu-item h4 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.menu-item p {
  color: #7f8c8d;
}

.menu-item p strong {
  font-size: 1.2rem;
  color: #f39c12;
}

/* Pricing Section */
.menu-item p:last-child {
  font-weight: bold;
  font-size: 1.1rem;
  color: #34495e;
  margin-top: 5px;
}

/* Add some space between sections */
.menu-category {
  margin-bottom: 40px;
}

/* Styling for mobile devices */
@media (max-width: 768px) {
  #menu {
      width: 95%;
      padding: 1rem;
  }

  h2 {
      font-size: 2rem;
  }

  h3 {
      font-size: 1.6rem;
  }

  h4 {
      font-size: 1.2rem;
  }

  p {
      font-size: 0.9rem;
  }

  .menu-item {
      padding: 10px 0;
  }
}

