* {
  margin: 0px;
  padding: 0px;
}

.header-background {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2) url(./img/header-background.jpg);
  background-blend-mode: darken;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* About */

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

#about {
  padding: 40px 0;
  background: #ffffff;
  text-align: center;
}

#about p {
  font-size: 1.2em;
  color: #666;
  line-height: 1.6;
  text-align: center;
  text-align: justify;
}

@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
    --smaller-font-size: 0.875rem;
  }
}

/*===== BASE =====*/
*,
::before,
::after {
  box-sizing: border-box;
}

::placeholder {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--second-color);
}

h1,
h2,
p {
  margin: 0;
}

.book-box h5{
  color: #666;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

li a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.padding-top-bottom {
  /* padding-top: 10px;
    padding-bottom: 10px; */
  padding: 10px;
}

/*===== CLASS CSS ===== */
.section-title {
  position: relative;
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-top: var(--mb-2);
  margin-bottom: var(--mb-4);
  text-align: center;
}

.section-title::after {
  width: 64px;
  height: 0.18rem;
  left: 0;
  right: 0;
  margin: auto;
  top: 2rem;
  background-color: var(--first-color);
}

.section {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/*===== LAYOUT =====*/

.cities__box {
  padding: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.cities__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1224px;
  margin: 0 auto;
}

.cities__img {
  display: block;
  background-color: #f0f0f0;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
}

.cities__img img {
  width: 100%;
  height: auto;
}

.padding-top-bottom {
  margin: 10px 0;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: white;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.15);
}

.attachment {
  width: 100%;
  height: 60vh;
  background: rgba(0, 0, 0, 0.6) url(./img/baggage.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  background-blend-mode: darken;
  display: flex;
  justify-content: center;
  align-items: center;
}

.attachment-text {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  font-size: var(--normal-font-size);
}



/* PRICES */

.prices {
    width: 80%;
    margin: auto;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    
    
}

h1 {
    text-align: center;
    color: #343a40;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px;
    border: 1px solid #dee2e6;
    text-align: left;
}

th {
    background-color: #343a40;
    color: #fff;
}

tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

tbody tr:hover {
    background-color: #e9ecef;
}


@media screen and (max-width: 767px) {
  .cities__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .table-responsive {
    overflow-x: auto;
  }
  .table th, .table td {
    white-space: nowrap;
  }

}

/* CONTACT-BOX */
.contact-box{
  width: 80%;
  margin: auto;
}



/* ===== CITIES =====*/
.cities__container {
  row-gap: 2rem;
}

.cities__img {
  box-shadow: 0px 4px 25px rgba(14, 36, 49, 0.55);
  border-radius: 0.5rem;
  overflow: hidden;
}

.cities__img img {
  transition: 1s;
}

.cities__img img:hover {
  transform: scale(1.1);
}

.book-box {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0px 40px 0px;
}
/* ===== SINGLE-BOX ===== */
.tour-card {
  width: 550px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.tour-card__image-wrapper {
  width: 100%;
  height: 200px;
  position: relative;
}

.tour-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.tour-card__content {
  padding: 20px;
  text-align: center;
}

.tour-card__content h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

.tour-card__content p {
  font-size: 1em;
  margin-bottom: 20px;
  color: #666;
}

/* ===== FOOTER =====*/
.footer {
  background-color: var(--second-color);
  color: #fff;
  text-align: center;
  font-weight: var(--font-semi);
  padding: 2rem 0;
}

.footer__title {
  font-size: 2rem;
  margin-bottom: var(--mb-4);
}

.footer__social {
  margin-bottom: var(--mb-4);
}

.footer__icon {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 var(--mb-2);
}

.footer__copy {
  font-size: var(--smaller-font-size);
}

/* ===== MEDIA QUERIES=====*/
@media screen and (max-width: 480px) {
  .cities__container {
    grid-template-columns: 1fr;
  }
}

