/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9ff;
  color: #333;
}

.container {
  width: 90%;
  margin: 0 auto;
}

/* Header Styles */
header {
  background-color: #0066cc;
  padding: 20px 0;
  color: white;
}

header .header__logo h1 {
  font-size: 2rem;
  text-transform: uppercase;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
}

header nav ul li a {
  color: white;
  padding: 10px;
  text-decoration: none;
  font-weight: bold;
}

header nav ul li a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  background-image: url('./image/hero_tropico.webp');
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.5rem;
  margin-top: 10px;
}

/* About Section */
.about_section {
  padding: 50px 0;
  background-color: #ffffff;
}

.about_box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about_text h2 {
  color: #0066cc;
}

.about_image img {
  width: 100%;
  border-radius: 8px;
}

/* Attractions Section */
.attr_section {
  padding: 50px 0;
  background-color: #f0f8ff;
}

.attr_box {
  display: flex;
  gap: 20px;
}

.attr_item {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.attr_item img {
  width: 100%;
  border-radius: 8px;
}

/* Events Section */
.events_section {
  padding: 50px 0;
  background-color: #ffffff;
}

.events_box {
  display: flex;
  gap: 20px;
}

.event_item img {
  width: 100%;
  border-radius: 8px;
}

/* Contact Section */
.contact_section {
  padding: 50px 0;
  background-color: #f0f8ff;
}

.contact_info p {
  margin: 10px 0;
  font-size: 1.2rem;
}

.contact_info strong {
  color: #0066cc;
}

/* Footer Styles */
.footer {
  background-color: #0066cc;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
}
