/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background-color: #203a43;
  color: #fff;
}

/* Background Layer */
.gif-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('your-background.gif') center center / cover no-repeat;
  background-color: #81D8D0; /* Tiffany Blue fallback */
  z-index: -1;
}

/* Overlay */
.overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

/* Header Navigation */
.header {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  z-index: 1;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: white;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.nav-links .login {
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 5px;
}

.nav-links .button {
  background-color: rgb(0, 0, 0);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Hero Section */
h1 {
  font-size: 3em;
  margin-bottom: 30px;
}

/* Search Bar */
.search-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

input, select, button {
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
}

select {
  background-color: #fff;
  color: #333;
}

input {
  width: 200px;
}

button {
  background-color: #000000;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* Featured Cities Section */
.featured-cities {
  background: linear-gradient(to right, #0f0f0f, #1c1c1c);
  padding: 60px 20px;
  color: #f5f5f5;
}

.cities-wrapper {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 30px;
  margin-bottom: 40px;
  color: #ffffff;
  border-bottom: 2px solid #444;
  display: inline-block;
  padding-bottom: 10px;
}

.city {
  margin-bottom: 30px;
}

.city h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #e0e0e0;
}

.city ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.city ul li {
  margin-bottom: 6px;
  color: #bbb;
}

/* Social Icons */
.footer-social, .cities-wrapper .footer-social {
  margin-top: 40px;
  text-align: center;
}

.footer-social a {
  margin: 0 10px;
  color: #aaa;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

/* Footer */
.site-footer {
  background: #111;
  color: #eee;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  max-height: 50px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #888;
}
