/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

/* Header */
header {
  background: #004466;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 1.5rem;
  font-weight: bold;
}

header nav {
  display: flex;
  gap: 1.5rem;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover {
  color: #ffcc00;
}

/* Mobile Nav */
#menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

#nav-menu {
  display: flex;
}

#nav-menu.show {
  display: block;
  position: absolute;
  top: 60px;
  right: 20px;
  background: #004466;
  padding: 1rem;
  border-radius: 8px;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }
  #nav-menu {
    display: none;
  }
}

/* Hero Section */
#hero {
  background: url("https://source.unsplash.com/1600x600/?cape-town,travel") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

#hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button, .cta-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta-button {
  background: #ffcc00;
  color: #004466;
  margin-right: 1rem;
}

.cta-button:hover {
  background: #e6b800;
}

.cta-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.2);
}

/* Sections */
section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #004466;
  font-size: 2rem;
}

/* Services */
#services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card a {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  color: #004466;
  font-weight: bold;
}

/* Trust Section */
#trust ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
}

#trust li {
  background: #e6f7ff;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  font-weight: bold;
}

/* Packages */
#packages ul {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

#packages li {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#packages a {
  background: #004466;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
}

#packages a:hover {
  background: #006699;
}

/* Testimonials */
#testimonials blockquote {
  background: #fff;
  padding: 1.5rem;
  margin: 1rem auto;
  border-left: 5px solid #004466;
  border-radius: 8px;
  max-width: 800px;
  font-style: italic;
}

/* Booking Form */
#booking form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

#booking input, #booking select, #booking textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

#booking button {
  background: #004466;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}

#booking button:hover {
  background: #006699;
}

/* Blog Section */
#blog {
  text-align: center;
}

#blog a {
  display: inline-block;
  margin-top: 1rem;
  background: #004466;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
}

#blog a:hover {
  background: #006699;
}

/* WhatsApp CTA */
#whatsapp {
  text-align: center;
  margin: 2rem 0;
}

#whatsapp a {
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

#whatsapp a:hover {
  background: #1ebe5a;
}

/* Footer */
footer {
  background: #004466;
  color: #fff;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

footer .socials {
  margin-top: 1rem;
}

footer .socials a {
  color: #ffcc00;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: bold;
}

footer .socials a:hover {
  color: #fff;
}

/* Animated Tourism Background */
.travel-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Behind all content */
  background: linear-gradient(180deg, #e6f7ff 0%, #fafafa 100%);
}

.travel-background span {
  position: absolute;
  display: block;
  font-size: 2rem;
  opacity: 0.15;
  animation: float 20s linear infinite;
}

.travel-background span:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  font-size: 3rem;
}

.travel-background span:nth-child(2) {
  left: 30%;
  animation-delay: 5s;
}

.travel-background span:nth-child(3) {
  left: 55%;
  animation-delay: 10s;
  font-size: 2.5rem;
}

.travel-background span:nth-child(4) {
  left: 75%;
  animation-delay: 15s;
}

.travel-background span:nth-child(5) {
  left: 90%;
  animation-delay: 7s;
  font-size: 3rem;
}

@keyframes float {
  0% {
    top: 100%;
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.15;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    top: -10%;
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}
