



body {
  margin: 0;
  background-color: #70c6dc;
  font-family: "Playfair Display", serif;
}



.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}


header {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)),
    url("../images/image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 250px 20px;
}

header h1 {
  font-size: 90px;
  margin: 0;
  line-height: 1.2;
}

header h2 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  margin: 0;
}

header h3 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin: 20px 0;
}

header a {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: "Lato", sans-serif;
  transition: 0.3s;
}

header a:hover {
  background: white;
  color: black;
}

/* =========================
   MAIN
========================= */

main {
  background: white;
  padding: 80px 0;
}

.country {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
}

/* =========================
   GRIDS
========================= */

.grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.grid-3-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* =========================
   TRIPS SECTION
========================= */


.grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 60px;
}

.paris-image {
  width: 100%;
  height: 800px;
  object-fit: cover;
  border-radius: 10px;
}

.den-image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 10px;
}

.side-by-side {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.side-by-side div {
  flex: 1;
}



.img-responsive {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
}



main h2 {
  text-align: center;
  color: lightslategrey;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

p,
li {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
}

a {
  color: #88fffd;
  text-decoration: none;
  font-weight: 700;
}



.secondary {
  background: #f6f6f6;
  padding: 80px 20px;
}



.secondary {
  background: #f6f6f6;
  padding: 80px 20px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.food-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.card-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.food-card h2 {
  text-align: center;
  margin: 20px 0 15px;
}

.food-card p {
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-more {
  display: inline-block;
  background: #70c6dc;
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 12px 20px;
  border-radius: 6px;
  font-family: "Lato", sans-serif;
  transition: 0.3s;
}

.learn-more:hover {
  opacity: 0.85;
}


.travel-table {
  margin: 80px 0;
}

.travel-table h2 {
  text-align: center;
  margin-bottom: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

th {
  background: #70c6dc;
  color: white;
  padding: 15px;
  text-align: left;
  font-family: "Lato", sans-serif;
}

td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  font-family: "Lato", sans-serif;
}

tr:hover {
  background: #f5f5f5;
}








footer {
  background-image:
    linear-gradient(
      rgba(19, 27, 29, 0.7),
      rgba(19, 27, 29, 0.7)
    ),
    url("../images/footerback.jpg");

  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 80px 0;
}

footer h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

footer ul {
  padding: 0;
}

footer li {
  list-style: none;
  margin-bottom: 10px;
}

footer p {
  opacity: 0.9;
}

.bottom-footer {
  text-align: center;
  color: white;
  padding: 20px;
  background: #3f98b0;
}

.bottom-footer h4,
.bottom-footer p {
  font-family: "Lato", sans-serif;
  font-size: 14px;
}


/* ======================
   TABLET
========================= */

@media (max-width: 1024px) {

  header {
    padding: 150px 20px;
  }

  header h1 {
    font-size: 60px;
  }
  
 .grid-3-columns {
    grid-template-columns: 1fr 1fr;
  }


 .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .paris-image {
    height: 500px;
  }

  .den-image {
    height: 350px;
  }

  .side-by-side {
    grid-template-columns: 1fr 1fr;
  }


  .food-grid {
    grid-template-columns: 1fr 1fr;
  }

.grid-3-columns {
    grid-template-columns: 1fr;
}


.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.food-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.card-images img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.food-card h2 {
  text-align: center;
  margin: 20px 0 15px;
}

.food-card p {
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.6;
}

}


@media (max-width: 1024px) {

  .grid-2-columns {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }

  .side-by-side {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .side-by-side div {
    flex: 1;
    max-width: 340px;
  }

}









/* =========================
   MOBILE
========================= */

@media (max-width: 770px) {

  header {
    padding: 100px 20px;
  }

  header h1 {
    font-size: 42px;
  }

  header h2 {
    font-size: 14px;
  }

  header h3 {
    font-size: 15px;
  }

  .country {
    font-size: 32px;
  }


  .paris-image,
  .den-image,
  .side-by-side img {
    width: 100%;
    height: auto;
  }

  .places {
    margin-top: 20px;
  }



  .grid-2-columns,
  .grid-3-columns,
  .food-grid {
    grid-template-columns: 1fr;
  }

  .side-by-side {
    flex-direction: column;
  }


  .card-images {
    grid-template-columns: 1fr;
  }


  .food-grid {
    grid-template-columns: 1fr;
  }

  

  .learn-more {
    width: 100%;
    text-align: center;
  }

.country h1 {
  font-size: 25px;
}


.food-card {
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;

}

.card-images img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 8px;
}

.food-card h2 {
  text-align: center;
  margin: 20px 0 15px;
}

.food-card p {
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.6;
}

.instagram-media {
  width: 100% !important;
    object-fit: cover;
  max-width: 100px;
  margin: 10px auto;
  display: center;
}

.learn-more {

  text-align: center;
  padding: 8px 0px;

}

  table {
    font-size: 12px;
  }

  th,
  td {
    padding: 10px;
  }
}






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

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 400px) {

  header h1 {
    font-size: 25px;
  }



header h2 {
  font-family: "Lato", sans-serif;
  font-size: 8px;
  letter-spacing: 3px;
  padding-bottom: 10px;
  margin: 0;
}

header h3 {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 300;
  margin: 20px 0;
}

header a {
    font-size: 8px;
      padding: 10px 15px;
}


  .places,
 h2 {
    font-size: 19px;
  }

  .country {
    font-size: 19px;
  }

  p,
  li {
    font-size: 14px;
  }

  .food-card {
    padding: 15px;
  }

  .learn-more {
    width: 100%;
    text-align: center;
  }


.card-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.food-card h2 {
  text-align: center;
  margin: 20px 0 15px;
  font-size: 18px;
}
.food-card p {
    font-size: 12px;
}
.bottom-footer h4,
.bottom-footer p {
  font-family: "Lato", sans-serif;
  font-size: 10px;
}

.side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.learn-more {

  text-align: center;
  padding: 8px 0px;

}

.instagram-media {
  width: 100% !important;
  max-width: 300px;
  margin: 10px auto;
  display: center;


}

.country h1 {
  font-size: 20px;
}

  table {
    font-size: 10px;
  }

  th,
  td {
    padding: 8px;
  }
}