/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Header */
header {
  background: #00695c;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffd54f;
}

/* Animation for moving background */
@keyframes scrollBackground {
  0% {
    background-position: 0% 0%, 25% 0%, 50% 0%, 75% 0%;
  }
  100% {
    background-position: -100% 0%, -75% 0%, -50% 0%, -25% 0%;
  }
}

/* Hero Section */
.hero {
  background: url("LOGOPAGINA.jpeg") center/cover no-repeat;
  color: #000000;
  text-align: left;
  padding: 2rem 4rem 12rem 4rem;
  min-height: 400px;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 2.0rem;
  margin-bottom: 1rem;
}

/* Sections */
section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #00695c;
}

/* Cards (Services) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #004d40;
}

/* Destinations */
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.destination {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.destination:hover {
  transform: translateY(-5px);
}

.destination img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination h3 {
  padding: 1rem;
  color: #004d40;
}

.destination p {
  padding: 0 1rem 1rem;
}

.destination .btn {
  display: block;
  text-align: center;
  background: #00695c;
  color: #fff;
  padding: 0.8rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.destination .btn:hover {
  background: #004d40;
}

/* About */
#about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

#about img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Gallery & Comments Section */
#gallery {
  background-color: #f5f5f5;
}

#gallery h3 {
  color: #00695c;
  margin-bottom: 1.5rem;
  text-align: center;
}

.gallery-section {
  margin-bottom: 3rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.comments-section {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
}

.comments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.comment {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #00695c;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comment-header strong {
  color: #004d40;
  font-size: 1.1rem;
}

.stars {
  color: #ffc107;
  font-size: 0.9rem;
}

.comment p {
  color: #555;
  line-height: 1.6;
  font-style: italic;
}

/* Booking Form */
form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

form label {
  font-weight: bold;
}

form input, form textarea, form button {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form input:focus, form textarea:focus {
  border-color: #00695c;
  outline: none;
}

form button {
  background: #00695c;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #004d40;
}

/* Contact */
#contact {
  text-align: center;
}

#contact p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #004d40;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
}
