/* Global Reset & Styling */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: linear-gradient(to bottom, #01f1f1, #d1f4ff);
  color: #004c5f;
}

/* Header */
header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: rgba(1, 241, 241);
}

header img {
  height: 100px;
  margin-right: 15px;
}

header h1 {
  font-size: 1.5rem;
  color: #004c5f;
}

/* Hero Section */
.hero {
  background: url('images/dubrovnik.jpg') center/cover no-repeat;
  height: 60vh;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 0 10px #000;
  font-size: 2.5rem;
  text-align: center;
  padding: 0 10px;
}

/* Tours Preview Section */
.tours-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 15px;
  background-color: rgba(1, 241, 241);
}

.tours-preview img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tours-preview img:hover {
  transform: scale(1.05);
}

/* About Section */
.about {
  padding: 40px 20px;
  background: linear-gradient(to bottom, #01f1f1, #ffffff);
  text-align: center;
}

.about img {
  border-radius: 50%;
  width: 120px;
  margin-top: 20px;
}

/* Call-to-Action Buttons */
.buttons {
  text-align: center;
  margin: 30px 10px;
}

.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 15px 25px;
  background-color: #01f1f1;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.buttons a:hover {
  background-color: #0097a7;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
    font-size: 2rem;
  }

  .tours-preview img {
    max-width: 90%;
    height: auto;
  }
}
