/*** CSS & Mobile Matching ***/
/*** RESET + BASE ***/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #111;
  overflow-x: hidden;
}

/*** NAVBAR ***/

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 70px;
  display: flex;
  justify-content: center; /* center the nav horizontally */
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

/* Brand (logo) sits visually at the left while nav remains centered */
.main-nav .brand {
  position: absolute;
  left: 90px; /* increased left offset for breathing room */
  top: 0;
  bottom: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
} 

.main-nav .logo {
  height: 56px; /* slightly larger logo */
  display: block;
}

.main-nav .brand .brand-text {
  color: #c9a24d;
  font-weight: 700;
  font-size: 11px;
  margin-left: 6px;
  text-decoration: none;
  font-family: inherit;
} 

.navbar {
  display: flex;
  gap: 40px; /* increased gap between items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #fff;
  font-size: 17px; /* slightly larger navigation text */
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 6px 4px; /* touch-friendly spacing */
}

.navbar a:hover {
  color: #c9a24d;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: relative;
  }

  .navbar {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navbar.active {
    max-height: 400px;
  }

  .navbar li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/*** HERO / BANNER ***/

.banner {
  min-height: 100vh;
  padding-top: 80px; /* חשוב – גובה הנאב */
  /* background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.35)),
    url("https://israel.travel/wp-content/uploads/2019/03/negev-insdie-min.jpg") center / cover no-repeat; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

/*** HERO CONTENT ***/

.title {
  max-width: 900px;
  padding: 0 20px;
}

.title h1 {
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.5px;
  text-transform: none;
  line-height: 1.1;
  color: #c9a24d; /* match the CTA button gold */
  /* text-only shadow so the effect hugs characters */
  text-shadow: 0 8px 24px rgba(0,0,0,0.55);
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
  padding: 8px 14px;
  border-radius: 10px;
  /* background: rgba(201,162,77,0.05); */
  /* removed the outer box-shadow as requested */
}

.title h1:hover {
  transform: translateY(-4px);
  text-shadow: 0 10px 28px rgba(0,0,0,0.6);
}

@media (max-width: 900px) {
  .title h1 {
    font-size: 42px;
  }
}

.title p {
  font-size: 20px;
  margin: 18px 0;
}

p {
  font-weight: 400;
  line-height: 1.8;
}

.subtitle {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

.newstext h6 {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 20px;
}


/*** CTA BUTTON ***/

.button {
  display: inline-block;
  margin-top: 35px;
  padding: 16px 42px;
  border-radius: 40px;
  background: #c9a24d;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button:hover {
  background: #e1b860;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/*** ABOUT ***/

.container {
  padding: 120px 80px;
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.06);
  overflow: visible;
}

/* highlight variant used on the split section */
.container.highlight {
  padding: 72px 60px;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.06);
}

.container .text {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

/* small label / pre-title */
.container.highlight .text p:first-of-type {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #6e6e6e;
  margin-bottom: 8px;
  font-weight: 600;
}

/* main heading for the highlight */
.container.highlight h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #c9a24d; /* match CTA gold */
  font-weight: 800;
  text-shadow: 0 6px 18px rgba(0,0,0,0.18);
  display: inline-block;
  /* padding: 6px 10px; */
  border-radius: 8px;
  background: rgba(201,162,77,0.04);
}

.container p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

@media (max-width: 900px) {
  .container {
    padding: 40px 24px;
  }

  .container.highlight {
    padding: 28px 20px;
  }

  .container.highlight h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 16px;
  }

  .container.highlight {
    padding: 20px 16px;
  }

  .container.highlight h2 {
    font-size: 24px;
  }

  .container p {
    font-size: 14px;
  }
}

/*** INTERESTS ***/

.interests {
  padding: 120px 80px;
  text-align: center;
}

.interests h2 {
  font-size: 42px;
  margin-bottom: 60px;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.interest-card {
  padding: 50px 35px;
  border-radius: 22px;
  background: rgb(201, 162, 77);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  text-align: left;
  transition: all 0.4s ease;
}

.interest-card span {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c9a24d;
}

.interest-card h3 {
  font-size: 24px;
  margin: 15px 0;
}

.interest-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.interest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

@media (max-width: 900px) {
  .interests {
    padding: 60px 22px;
  }

  .interests h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .interest-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .interest-card {
    padding: 35px 25px;
  }

  .interest-card h3 {
    font-size: 20px;
  }

  .interest-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .interests {
    padding: 40px 16px;
  }

  .interests h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .interest-card {
    padding: 25px 16px;
  }

  .interest-card span {
    font-size: 10px;
  }

  .interest-card h3 {
    font-size: 18px;
    margin: 10px 0;
  }

  .interest-card p {
    font-size: 13px;
  }
}

/*** FOOTER ***/


.footer {
  background: #191919;
  padding: 60px 20px;
  text-align: center;
}

.footer p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}

/** VIDEO **/

.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
   /* background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
    url("https://israel.travel/wp-content/uploads/2019/03/negev-insdie-min.jpg")
    center / cover no-repeat; */
}

.video-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* שכבת כהות / זהב עדינה */
.video-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.65)
  );
  z-index: 2;
}

/* הטקסט מעל הוידאו */
.video-hero .title {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
}

.overlay {
  background: linear-gradient(
    rgba(10,20,40,0.45),
    rgba(60,40,10,0.6)
  );
}


@media (max-width: 768px) {
  .video-hero video {
    display: block;
    width: 100%;
    height: 100%;
  }

  .video-hero {
    min-height: 50vh;
    background-color: #000;
  }

  /* Nav responsive tweaks */
  .main-nav {
    padding: 0 12px;
    height: 70px;
    justify-content: space-between;
  }

  /* Keep brand close to the left padding on small screens */
  .main-nav .brand {
    position: static;
    left: auto;
  }

  .main-nav .logo {
    height: 40px;
  }

  .main-nav .brand .brand-text {
    display: none;
  }

  .navbar {
    gap: 12px;
    padding: 0;
  }

  .navbar a {
    font-size: 13px;
    padding: 4px 8px;
  }

  /* Hero title adjustments */
  .title {
    padding: 0 15px;
  }

  .title h1 {
    font-size: 28px;
    margin: 0 auto;
  }

  .title p {
    font-size: 16px;
    margin: 12px 0;
  }

  .subtitle {
    font-size: 16px;
  }

  .button {
    padding: 12px 28px;
    font-size: 14px;
    margin-top: 20px;
  }

  .banner {
    padding-top: 70px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .main-nav {
    height: 60px;
    padding: 0 8px;
  }

  .main-nav .logo {
    height: 36px;
  }

  .navbar {
    gap: 8px;
  }

  .navbar a {
    font-size: 11px;
    padding: 2px 4px;
  }

  .title h1 {
    font-size: 22px;
  }

  .title p {
    font-size: 14px;
  }

  .subtitle {
    font-size: 14px;
  }

  .intro {
    font-size: 13px;
  }

  .button {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* media slideshow area (replaces inline video) */
.media {
  width: 100%;
  min-height: 420px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.9s ease-in-out, transform 0.5s ease;
}

.media:hover {
  transform: scale(1.005);
}

@media (max-width: 900px) {
  .media {
    min-height: 220px;
    border-radius: 12px;
  }
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .media {
    margin-top: 40px;
  }
}



/** **/

.about-slideshow {
  position: relative;
  /* use the same soft site background as other containers */
  padding: 60px 48px;
  background: #f7f7f7;
  overflow: visible;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* overlay removed for a light background */
.about-slideshow .overlay {
  display: none;
} 

/* two-column layout (image left, content right) */
.about-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 60px; /* breathing room between image and content */
  min-height: 65vh; /* better visual balance */
}

/* image column (left) */
.about-image {
  width: 55%;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  transition: background-image 1.5s ease-in-out, transform 0.5s ease;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* subtle zoom on hover for a premium feel */
.about-image:hover {
  transform: scale(1.02);
}

/* gentle gradient overlay on the image side (keeps text readable if overlay overlaps) */
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.02) 40%);
  pointer-events: none;
}

/* content column (right) */
.about-content {
  width: 45%;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  border-radius: 8px;
}

.about-content .text {
  max-width: 520px;
  color: #111; /* match site text color */
  font-family: inherit;
}  

/* stronger, more prominent section title (match site section headings) */
.about-content .about-title {
  font-size: 36px; /* match .container h2 */
  font-weight: 800;
  margin-bottom: 20px; /* consistent with other section headings */
  line-height: 1.1;
  color: #111; /* match site headings */
  letter-spacing: 0px;
} 

/* intro paragraph under About section */
.about-content .intro {
  font-size: 18px; /* consistent with other body text */
  color: #333;
  margin-bottom: 22px;
  opacity: 1;
} 

/* slightly tighter paragraph rules for better readability */
.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
} 

/* responsive: stack and reduce sizes on narrower viewports */
@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
    gap: 28px;
  }

  .about-image {
    width: 100%;
    min-height: 280px;
    border-radius: 10px;
    order: 1;
  }

  .about-content {
    width: 100%;
    padding: 36px 20px;
    border-left: none;
    border-top: 4px solid rgba(201,162,77,0.08);
    order: 2;
  }

  .about-content .about-title {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.8;
  }
}

.about-content .signature:first-of-type {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.2;
}


/* טקסט */
.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
} 

.about-content p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 22px;
}
/* שורת חתימה */
.about-content .signature {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
  opacity: 0.95;
}

/* הערת שוליים */
.about-content .note {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 28px;
}

/* רספונסיב */
@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

  .about-image {
    height: 38vh;
  }

  .about-content {
    padding: 45px 25px;
  }
}

/* ===== ABOUT: CENTERED + PREMIUM CARD (override) ===== */

.about-layout{
  justify-content: center;              /* מרכז את התוכן */
}

.about-image{
  display: none;                         /* מבטל את הטור השמאלי כדי שהתוכן לא יברח ימינה */
}

.about-content{
  width: 100%;
  padding: 90px 24px;                    /* ריווח יפה מסביב */
  justify-content: center;               /* מרכז אופקית */
}

/* card variant for centered layout — use white card to match site */
.about-content .text{
  max-width: 1200px;                      /* מרוכז יותר */
  padding: 48px 44px;
  border-radius: 22px;
  background: #ffffff;                    /* light card to match site */
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
} 

/* כותרת ראשית – חזקה יותר */
.about-content .signature:first-of-type{
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 22px 0;
}

/* טקסט */
.about-content p{
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* "Deeply Rooted..." ככותרת משנית */
.about-content .signature{
  margin-top: 26px;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 650;
  opacity: 0.98;
}

/* הערת שוליים */
.about-content .note{
  margin-top: 18px;
  font-size: 14px;
  opacity: 0.85;
}

/* no extra dark overlay for light sections */
.about-slideshow .overlay{
  background: #0b0b0b0f;
}

/* מובייל */
@media (max-width: 900px){
  .about-content{
    padding: 60px 18px;
  }
  .about-content .text{
    padding: 30px 22px;
  }
  .about-content .signature:first-of-type{
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .about-content {
    padding: 40px 12px;
  }

  .about-content .text {
    padding: 20px 16px;
  }

  .about-content .signature:first-of-type {
    font-size: 26px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .about-content .note {
    font-size: 12px;
  }

  .about-content .signature {
    font-size: 18px;
  }
}


/** the last section**/

/* =========================
   LAST SECTIONS: TOURS + DESTINATIONS + CONTACT
   Paste at END of style.css
   ========================= */

/* Titles reused (Our Tours / Top Destinations) */
.package-title {
  text-align: center;
  margin-bottom: 50px;
}

.package-title h2 {
  font-size: 42px;
  letter-spacing: -0.4px;
}

/* --- TOURS (cards) --- */
.package2 {
  padding: 120px 80px;
  background: #ffffff;
}

.package2-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* a.box should look like a card (not a blue link) */
.package2-content .box {
  display: block;
  padding: 38px 34px;
  border-radius: 22px;
  background: #fafafa;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.package2-content .box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.package2-content .box p {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.7;
}

.package2-content .box:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.14);
  border-color: rgba(201,162,77,0.45);
}

/* small accent line */
.package2-content .box::before{
  content:"";
  display:block;
  width: 48px;
  height: 3px;
  background: #c9a24d;
  border-radius: 999px;
  margin-bottom: 18px;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .package2 {
    padding: 80px 22px;
  }

  .package2-content {
    grid-template-columns: 1fr;
  }

  .package2-content .box {
    padding: 28px 20px;
  }

  .package2-content .box h3 {
    font-size: 18px;
  }

  .package2-content .box p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .package2 {
    padding: 50px 16px;
  }

  .package2-content {
    gap: 16px;
  }

  .package2-content .box {
    padding: 20px 16px;
  }

  .package2-content .box h3 {
    font-size: 16px;
  }

  .package2-content .box p {
    font-size: 13px;
  }

  .package2-content .box::before {
    width: 36px;
    height: 2px;
    margin-bottom: 12px;
  }
}

/* --- DESTINATIONS (chips/cards) --- */
.location-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.col-content {
  position: relative;
  filter: brightness(95%);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  flex: 0 1 calc(25% - 20px);
  min-width: 200px;
}

.col-content img {
  margin-bottom: 10px;
  height: 180px;
  border-radius: 27px;
  width: 100%;
  object-fit: cover;
}

.col-content h5 {
  position: absolute;
  font-size: 15px;
  color: white;
  font-weight: 500;
  left: 20px;
  bottom: 116px;
  cursor: pointer;
}

.col-content p {
  position: absolute;
  font-size: 10px;
  color: white;
  left: 20px;
  bottom: 80px;
  cursor: pointer;
}

.col-content:hover {
  filter: brightness(120%);
  transform: scale(1.03);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .col-content {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .location-content {
    padding: 0 16px;
    gap: 16px;
  }

  .col-content {
    flex: 0 1 calc(50% - 16px);
  }

  .col-content img {
    height: 140px;
  }

  .col-content h5 {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .location-content {
    flex-direction: column;
    padding: 0 12px;
  }

  .col-content {
    flex: 0 1 100%;
  }

  .col-content img {
    height: 180px;
  }

  .col-content h5 {
    font-size: 14px;
    left: 15px;
  }

  .newsletter .send form {
    align-items: center;
  }
}
/* --- CONTACT (newsletter style) --- */
.newsletter {
  padding: 110px 80px;
  background: #191919;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.newsletter .newstext h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.newsletter .newstext p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.8;
}

.newsletter .send form{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.newsletter input[type="email"]{
  width: min(380px, 100%);
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
  font-size: 14px;
}

.newsletter input[type="email"]::placeholder{
  color: rgba(255,255,255,0.6);
}

.newsletter input[type="submit"]{
  padding: 14px 18px;
  border-radius: 999px;
  border: 0;
  background: #c9a24d;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 14px;
  white-space: nowrap;
}

.newsletter input[type="submit"]:hover{
  background: #e1b860;
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

@media (max-width: 900px) {
  .newsletter {
    padding: 80px 22px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter .newstext h2 {
    font-size: 32px;
  }

  .newsletter .send form {
    justify-content: center;
  }

  .newsletter input[type="email"] {
    width: 100%;
    max-width: 320px;
  }
  .newsletter input[type="submit"] {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .newsletter {
    padding: 50px 16px;
    gap: 20px;
  }

  .newsletter .newstext h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .newsletter .newstext p {
    font-size: 14px;
  }

  .newsletter .send form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter input[type="email"],
  .newsletter input[type="submit"] {
    width: 100%;
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* --- Responsive --- */
@media (max-width: 900px){
  .package2, .locations, .newsletter{
    padding: 80px 22px;
  }

  .package2-content{
    grid-template-columns: 1fr;
  }

  .newsletter{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter .send form{
    justify-content: center;
  }

  .package-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .package2, .locations {
    padding: 50px 16px;
  }

  .package-title {
    margin-bottom: 30px;
  }

  .package-title h2 {
    font-size: 24px;
  }
}
