*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;    
}

body {
   background-color: yellow;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

header .logo{
  font-size: 22px;
  font-weight: 800;
  color: #333;
}

nav ul{
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 300;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #0078ff;
}

.hero {
  height: 100vh;
  background: url("images/san-andres.jpg") center center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-color: rgba(0,0,0,0.10);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
  transform: translateY(100px);
  color: #111;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #111;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #222;
}

.hero-content button {
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-content button:hover {
  background-color: #e64a19;
}

.options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-color: white;
  padding: 40px 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.option {
  text-align: center;
  transition: transform 0.3s;
}

.option:hover {
  transform: translateY(-5px);
}

.option i {
  font-size: 32px;
  color: #0078ff;
  margin-bottom: 10px;
}

.option p {
  font-weight: 500;
  color: #333;
}

body{
  border: none;
  outline: none;
  background-color: #035677;
}

.page, .pages{
  min-height: 100vh;
  background: linear-gradient(to bottom, #54a0f1, #71c0d8);
  padding: 40px 20px;
  color: rgb(255, 255, 255);
  text-align: center;
}

.page h2, .pages h2 {
  font-size: 2rem;
  margin-top: 120px;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  width: 230px;
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px #00000069;
  color: #f7f8fa;
  padding-bottom: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);
}

.food {
  background: #ffffffd8;
  color: #000;
}

.food-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}



