* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

.logo img {
  height: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-bar {
  padding: 5px 10px;
  border: 1px solid #aaa;
  border-radius: 3px;
}

/* BANNER */
.banner {
  background: url("../images/banner-background.png") no-repeat center center/cover;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 150px;
  color: #fff;
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 5%, rgba(0, 0, 0, 0.1) 20%);
}

.banner-logo {
  width: 340px;
  height: auto;
  margin-bottom: 20px;
}

.banner-subtitle {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.banner-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS */
.btn-primary {
  background: #e62429;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  border: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #b21c20;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* FEATURES */
.section-features {
  background: #3f2e8d;
  padding: 70px 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}

.card {
  background: #f8c94e;
  width: 270px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-text {
  padding: 20px 15px 30px;
}

/* DISNEY+ SECTION */
.section-disneyplus {
  background: #004d5e;
  color: #fff;
  text-align: center;
  padding: 80px 40px;
}

.section-disneyplus h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.plus-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.plus-cards article {
  width: 250px;
}

.plus-cards img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* COMING SOON */
.section-coming {
  text-align: center;
  padding: 50px 20px;
  background: #f4f4f4;
}

.coming-grid img {
  width: 160px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.coming-grid img:hover {
  transform: scale(1.05);
}

/* PARKS */
.section-parks {
  padding: 50px;
  text-align: center;
}

.parks-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.park img {
  width: 400px;
  border-radius: 5px;
}

/* VISA */
.section-visa {
  background: url("../images/more-background.jpeg") no-repeat center center/cover;
  padding: 50px;
}

.visa-content {
  display: flex;
  justify-content: flex-end;
}

.visa-text {
  max-width: 400px;
}

/* FOOTER */
.footer {
  background: #f4f4f4;
  text-align: center;
  padding: 50px 20px;
}

.footer-logo {
  height: 40px;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0;
}

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

.footer p {
  font-size: 0.9rem;
  color: #777;
}
