/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

/* Header Layout */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

/* Header */
header {
  background: linear-gradient(135deg, #0a3d62, #0077be);
  color: #fff;
  padding: 15px 0;
}

/* Header Text */
header h1 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, #0077be, #87ceeb);
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.btn {
  background: #0077be;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

/* Tours */
.tours {
  padding: 60px 0;
  background: #f4f4f4;
}

.tour-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tour-card {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 15px;
  border-radius: 5px;
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

/* About */
.about {
  padding: 60px 0;
}

/* Contact */
.contact {
  padding: 60px 0;
  background: #f4f4f4;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  padding: 10px;
  font-size: 1rem;
  width: 100%;
}

.contact button {
  padding: 10px;
  background: #0077be;
  color: white;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background: #0077be;
  color: white;
  text-align: center;
  padding: 20px 0;
}
