* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* gradient/background */
body {
  background: linear-gradient(135deg, #1a3d7c, #f6f8fb, #b71c1c);
  color: #fff;
}

/* NAVIGATION */
nav {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
  display:flex;
  justify-content:center;
  padding:15px 0;
  list-style: none;
}

nav a {
  text-decoration:none;
  color: #003f8a;
  font-size: 18px;
  font-weight:bold;
  margin: 0 20px;
}

nav a:hover {
  border-bottom: 2px solid #DA291C;
}

/* BANNER */
.banner {
  width:100%;
  text-align:center;
  padding: 100px 20px;
  color: white;
  background-image: linear-gradient(to right, rgba(0,51,160,0.5), rgba(255,255,255,0.3), rgba(218,41,28,0.5)),
                    url("https://i0.wp.com/www.wannabeeverywhere.com/wp-content/uploads/2023/03/P6040447-HDR-2.jpg?fit=1500%2C504&ssl=1");
  background-size:cover;
  background-position:center;
  border-radius:0;
  transition: padding 0.5s ease, font-size 0.5s ease;
  min-height:300px;
}

/*background image */
body {
  background-image:url("https://images.unsplash.com/photo-1499856871958-5b9627545d1a?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8ZnJhbmNlfGVufDB8fDB8fHww");
}

.banner h1 {
  font-size:42px;
  text-shadow:2px 2px 6px black;
  transition: font-size 0.5s ease;
}

.banner p {
  font-size: 20px;
  margin-top: 10px;
  text-shadow: 1px 1px 4px black;
}

/*hover effect*/
.banner:hover {
  padding: 140px 20px;
}

.banner:hover h1 {
  font-size: 50px;
}

/*MAIN CONTENT*/
.home-content {
  display:flex;
  flex-wrap:wrap;
  width:80%;
  margin:40px auto;
  gap:30px;
}

.text-box {
  flex:1;
  color:#f5f5f5;
}

.text-box h2 {
  font-size:28px;
  color:#0f6de0;
  margin-bottom:15px;
  background-color: rgba(0,0,0,0.5);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
}

.text-box p {
  font-size:18px;
  line-height:1.5;
  background-color: rgba(0,0,0,0.5);
  padding: 12px;
  border-radius: 8px;
}

.highlight {
  margin-top: 12px;
  color: #e95b51;
  font-weight: bold;
}

/* HOME IMAGE (flag) */
.home-img {
  width: 45%;       
  max-width: 420px;  
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  margin: 0 auto;
  display: block;
  flex: none;       
}


/* FOOTER*/
footer{
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  border-top: 2px solid #003f8a;
}

/* FEATURE SECTIONS */
.feature-section {
  width: 80%;
  margin: 50px auto;
  text-align: center;
  padding: 25px 20px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
}

.feature-section h2 {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 15px;
}

.feature-section p {
  font-size:18px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 15px;
}

/*FEATURE IMAGE hover*/
.feature-img {
  width:35%;
  height:auto;
  border-radius:10px;
  box-shadow: 0 4px 10px rgba(177, 169, 169, 0.3);
  margin: 20px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Info grid landmark gallery*/
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.info-box {
  background-color: rgba(0,0,0,0.55);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.6);
}

.info-box h3 {
  color: #ffd700;
  font-size: 22px;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

/* Call to action row */
.cta-row {
  margin-top: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.plan-trip .cta-button,
.cta-button {
  display:inline-block;
  padding:12px 25px;
  background-color: #DA291C;
  color: #fff;
  text-decoration:none;
  font-weight:bold;
  border-radius:5px;
}

.cta-button:hover {
  background-color:#b71c1c;
}

/* Fun facts list*/
.fun-facts {
  list-style: disc inside;
  text-align: left;
  max-width:800px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.8;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .home-content { flex-direction: column; width:90%; }
  .home-img { width:80%; }
  .info-grid { grid-template-columns: 1fr; }
  .feature-img { width:60%; }
}
