/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Quicksand", sans-serif;
  scroll-behavior: smooth;
}

body, html {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #e6f2f2; 
  color: #222;
  line-height: 1.6;
}

/*HEADER & NAVIGATION */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: linear-gradient(90deg, #006d6f, #029b9f);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header .logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

nav ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #f4d03f;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f4d03f;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* HERO SECTION */
.hero, .hero-itinerary {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero::after, .hero-itinerary::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
}

.hero h1, .hero-itinerary h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero p, .hero-itinerary p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Hero background container */
.content-box {
  position: relative;
  width: 100%;
  height: 65vh; 
  background: url("/Images/GizaPyramids.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(238, 255, 0);
}

.content-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.342);
}

.content-box-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.264);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(191, 153, 0);
  padding: 0 1rem;
}

/*  MAIN CONTENT */
main {
  padding: 50px 10%;
}

h2 {
  text-align: center;
  color: #006d6f;
  margin-bottom: 25px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 1px;
}

h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4d03f;
  margin: 8px auto 0;
  display: block;
}

h3 {
  color: #c89d29;
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

/* SECTION SPACING  */
.why-egypt,
.things-to-do,
.information,
.about-us,
.our-mission {
  margin-bottom: 50px;
}

.things-to-do,
.information {
  padding: 50px 0;
}

/* INFO SECTIONS */
.info-section,
.about-us,
.our-mission {
  background: #d8e6e6; 
  border-left: 6px solid #c89d29;
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-section:hover,
.about-us:hover,
.our-mission:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* PLAN YOUR TRIP LAYOUT FIX */
.plan-trip .info-section {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.plan-trip .info-section img {
  width: 50%;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.plan-trip .info-section + .info-section {
  margin-top: 30px;
}

/* LANDMARKS & ACTIVITIES */
.landmark,
.activity {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.landmark:hover,
.activity:hover {
  transform: translateY(-5px);
}

.landmark:nth-child(even),
.activity:nth-child(even) {
  flex-direction: row-reverse;
}

.landmark img,
.activity img {
  width: 45%;
  min-width: 200px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landmark img:hover,
.activity img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* CULTURE SECTION */
.culture {
  text-align: center;
  background-color: #006d6f;
  color: #fff;
  padding: 50px 20px;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.culture h2 {
  color: #f4d03f;
}

/* CONTACT FORM */
.contact-form {
  padding: 50px 10%;
  background-color: #004f50; 
  color: #fff;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
  color: #f4d03f;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f4d03f;
  box-shadow: 0 0 0 3px rgba(244,208,63,0.3);
}

.contact-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background-color: #f4d03f;
  color: #004f50;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.contact-form button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ITINERARY CARDS */
.itinerary-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px 10%;
  margin-top: 50px; 
}

.itinerary-card {
  display: flex;
  gap: 20px;
  background: #d8e6e6; 
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.itinerary-card.reverse {
  flex-direction: row-reverse;
}

.itinerary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.itinerary-card img {
  width: 45%;
  object-fit: cover;
}

.itinerary-text {
  padding: 20px;
  width: 55%;
}

.itinerary-text h2 {
  color: #006d6f;
}

/* DO'S & DON'TS */
.dos-donts-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 10%;
}

.dos-card,
.donts-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: #d8e6e6; 
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left-width: 6px;
  border-left-style: solid;
}

.dos-card { border-left-color: #27ae60; }
.donts-card { border-left-color: #e74c3c; }

.dos-card:hover,
.donts-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
  background-color: #004f50;
  color: #fff;
  text-align: center;
  padding: 20px;
  border-top: 3px solid #f4d03f;
  font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 10px;
  }

  .landmark,
  .activity,
  .itinerary-card {
    flex-direction: column;
    text-align: center;
  }

  .landmark img,
  .activity img,
  .itinerary-card img,
  .itinerary-text,
  .landmark .text {
    width: 100%;
  }

  main {
    padding: 30px 5%;
  }
}

@media (max-width: 768px) {
  .plan-trip .info-section {
    flex-direction: column;
    text-align: center;
  }

  .plan-trip .info-section img {
    width: 80%;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2, h3 { font-size: 1.2rem; }

  .info-section,
  .contact-form {
    padding: 15px 10px;
  }
}
