* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Beiruti';
  src: url('/css/Beiruti.woff2') format('woff2'),
       url('/css/Beiruti.tff') format('truetype'); 
}

html {
  margin: 0;
  height: 100%;
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  background-image: url("/images/background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #111;
  background-attachment: fixed;
  color: #000000;
  font-family: Beiruti, Helvetica, sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #000000;
  text-decoration: none;
}

.page {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  padding: 25px;
    
}

.container {
  width: 100%;
  padding: 15px;
  background:#F7F7F7DF;
  background-image: linear-gradient(to bottom right,#FFFFFF10,#00000008,#FFFFFF08,#00000008,#FFFFFF08,#00000008,#FFFFFF10);
  border-radius:25px;
    
}

.top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
}

.logo {
  flex: 2;
}

.map {
  flex: 1;
}

.logo img,
.map img {
    width: 100%;
    max-height: 230px;
    object-fit: contain;
}

.taxi-info {
    display:flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    text-transform: uppercase;
    margin: 15px 0 20px;
}

.taxi-info div {
    text-align: center; 
    font-size: clamp(1rem, 10vw, 9rem);
    line-height: 1;
    font-weight: 800;
}

.taxi-info h1 {
    margin: 0;
    text-align: center;
    font-size: clamp(2rem, 16vw, 15rem);
    line-height: 1;
    font-weight: 900;
}

.taxi-info .days {
    display: block;
    margin: 0;
    padding: 10px 15px;
    background: #000000;
    color: #ffffff;
}

.taxi-info .hours {
    font-size: clamp(2rem, 15vw, 12rem);
}

.phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    margin-bottom: 60px;

    color: #000000;
    text-decoration: none;
    font-size: clamp(1rem, 14vw, 12rem);
}

.phone span {
    font-size: clamp(0.9rem, 10vw, 12rem);
}

.pictograms {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding:15px;
}

.pictogram {
    min-height: 120px;
    padding: 12px 8px;
    border: 0.5vw solid #f00000;
    border-radius: 1.5vw;

    text-align: center;
    text-transform: uppercase;
    
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pictogram strong {
    display: block;
    font-size: clamp(1rem, 8vw, 5rem);
}

.pictogram span {
    display: block;
    margin-top: 3px;
    font-size: clamp(1rem, 4vw, 3rem);
}

.pictogram img {
    padding: 1vw;
}

.tariff-info {
    display:flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    text-transform: uppercase;
    margin: 15px 0 20px;
}

.tariff-info h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(2rem, 24vw, 12rem);
}

.tariffs {
    display: grid;    
    grid-template-columns: repeat(5, max-content);
    align-items: center;
    gap: 2vw;
    padding:2vw;
    font-size: clamp(1rem, 3vw, 2rem);
    text-align:center;
}

.tariffs .tariff-day {
  display: flex;
  justify-content: space-between;
}

.tariffs > :nth-child(5n+1) {
  text-align:left;
}

.tariffs-small {
  display: none;    
  width:75%;
  flex-direction: column;
  font-size: clamp(1rem, 5vw, 2rem);
  gap: 2vw;
  padding:2vw;
}

.tariffs-small .tariff-day {
    display: flex;
    justify-content: space-between;
  font-size: clamp(1.5rem, 8vw, 4rem);
}

.tariff-row {
    display: flex;
    justify-content: space-between;
}

.about p {
    padding:0 4vw;
    text-align: left;
    font-size: clamp(0.5em, 3vw, 3rem);
    line-height:1.5;
}

.about h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(1rem, 8vw, 6rem);
}


/* ------------------------------
   Mobil
------------------------------ */

@media (max-width: 600px) {
  .page {
    width: 100%;
    padding: 0px;
  }

  .container {
    padding: 0;
    border-radius:0;
    
  }

  .top {
    flex-direction: column;
    gap: 20px;
  }

  .logo, .map {
    width: 100%;
  }

  .logo img {
    max-height: 180px;
  }

  .map img {
    max-height: 220px;
  }
  .phone {
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .pictograms {
    flex-direction: column;
  }
  .pictogram {
    min-height: auto;
    padding: 12px;
  }
  .pictogram strong {
    font-size: clamp(1rem, 16vw, 6rem);
  }
  .pictogram span {
    font-size: clamp(1rem, 10vw, 3rem);
  }

  .tariffs {
    display: none;    
  }

  .tariffs-small {
    display: flex;    
  }
}
