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

body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; }

nav {
  display: flex; justify-content: space-between; align-items: center;
  background-color: #8B0000; padding: 15px 40px; position: sticky; top: 0; z-index: 100;
}
nav .logo { color: #FFD700; font-size: 1.5rem; font-weight: bold; }
nav ul { list-style: none; display: flex; gap: 30px; }
nav ul li a { color: white; text-decoration: none; font-size: 1rem; transition: color 0.3s; }
nav ul li a:hover { color: #FFD700; }

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('https://images.pexels.com/photos/5620146/pexels-photo-5620146.jpeg');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.3rem; margin-bottom: 30px; }
.hero-content img {
  width: 100%; max-width: 700px; height: 400px; object-fit: cover;
  border-radius: 12px; margin: 20px auto; display: block;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4); border: 3px solid #FFD700;
}

.btn {
  background-color: #FFD700; color: #8B0000; padding: 15px 35px;
  text-decoration: none; border-radius: 5px; font-weight: bold;
  font-size: 1.1rem; transition: background 0.3s; display: inline-block; margin-top: 20px;
}
.btn:hover { background-color: #FFA500; }

.highlights { padding: 60px 40px; text-align: center; background-color: #f9f9f9; }
.highlights h2 { font-size: 2.2rem; margin-bottom: 40px; color: #8B0000; }

.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px; max-width: 1100px; margin: 0 auto;
}
.card {
  background: white; border-radius: 10px; padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }
.card h3 { font-size: 1.3rem; margin-bottom: 15px; color: #8B0000; }

.food-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px; margin-top: 30px;
}
.food-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); background: white; transition: transform 0.3s;
}
.food-card:hover { transform: translateY(-5px); }
.food-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.food-card .food-info { padding: 18px; }
.food-card h3 { color: #8B0000; font-size: 1.2rem; margin-bottom: 8px; }
.food-card p { font-size: 0.95rem; color: #555; line-height: 1.6; margin: 0; 

.dest-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px; margin-top: 30px;
}
.dest-card {
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); background: white; transition: transform 0.3s;
}
.dest-card:hover { transform: translateY(-5px); }
.dest-card img { width: 100%; height: 200px; object-fit: cover; }
.dest-card .info { padding: 20px; }
.dest-card h3 { color: #8B0000; margin-bottom: 10px; }

.section { padding: 60px 40px; max-width: 1100px; margin: 0 auto; }
.bg-light { background-color: #f9f9f9; }

footer {
  background-color: #8B0000; color: #FFD700;
  text-align: center; padding: 20px; font-size: 0.9rem;
}
