@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.fullscreen{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.area{
    padding: 10px;
    background-color: #49605d;
    border-radius: 5px;
}

.row50{
    position: relative;
    display: block;
    width: 50%;
    height: auto;
}

footer{
  height: 50px;
}

footer .content{
    margin-bottom: 0;
}

footer .whatsapp{
  color: #000;
  font-size: 20px;
  line-height: 50px;
}

.textfooter{
  text-align: left;
  line-height: 50px;
}

img{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.content{
    position: relative;
    display: flex;
    width: 80%;
    height: auto;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ticketarea{
    position: relative;
    display: inline-block;
    height: auto;
    padding: 5px;
    margin:5px;
    background-color: #fff;
    border-radius: 5px;
}

.titletext{
    font-size: 5vw;
    text-align: center;
    color: rgba(255, 255, 255,0.7)
}

.titletextt{
  font-size: 3.5vw;
    text-align: center;
    color: rgba(0, 0, 0,0.6)
}

header{
    margin-bottom: 20px;
}

.header{
    position: relative;
    display: block;
    width: 80%;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
}

.header .tel{
    color: #000;
}

.contentimg{
    position: relative;
    display: block;
    width: 300px;
    height: 300px;
    margin-bottom: 20px;
}

.flexwrap{
    flex-wrap: wrap;
}

.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 600px;
      object-fit: cover;
    }

    .whatsapp{
        float: right;
        font-size: 30px;
    }

    .features {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .feature-box {
      flex: 1 1 200px;
      padding: 20px;
      color: #fff;
      border-radius: 12px;
      font-size: 16px;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .box1 { background-color: #4CAF50; }  /* Yeşil */
    .box2 { background-color: #2196F3; }  /* Mavi */
    .box3 { background-color: #FF9800; }  /* Turuncu */
    .box4 { background-color: #9C27B0; }  /* Mor */
    .check-icon {
      font-size: 20px;
    }

    .phone-container {
      display: flex;
      justify-content: center;
      margin: 40px 0;
    }

    .phone-box {
      background: linear-gradient(135deg, #4CAF50, #2E7D32);
      padding: 20px 40px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      font-size: 24px;
      font-weight: bold;
      color: #fff;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .phone-box:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .phone-icon {
      color: #0c3f68; /* Mavi */
      font-size: 26px;
    }

    @media (max-width: 600px) {
      .phone-box {
        font-size: 20px;
        padding: 15px 30px;
      }
    }
/* Tablet ve altı cihazlar için (örnek: mobil telefonlar) */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
  }

  .content{
    width: 90%;
}

  .row50 {
    width: 100%;
  }

  .titletext {
    font-size: 8vw;
    text-align: center;
  }

  .swiper-slide img,
  .contentimg {
    width: 100%;
    height: auto;
  }

  .swiper-slide {
    height: auto;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 90%;
    margin-bottom: 15px;
  }

  .header {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .whatsapp {
    float: none;
    margin-top: 10px;
  }

  .phone-container {
    margin: 20px 0;
  }

  .phone-box {
    font-size: 18px;
    padding: 15px 20px;
  }

  .phone-icon {
    font-size: 22px;
  }

  .contentimg {
    width: 100%;
    height: auto;
  }

  .ticketarea {
    font-size: 14px;
  }
}

/* Küçük ekranlar için (örnek: eski telefonlar, dar ekranlı cihazlar) */
@media (max-width: 480px) {
.content{
    width: 90%;
}
  .titletext {
    font-size: 10vw;
  }

  .phone-box {
    font-size: 16px;
    padding: 12px 16px;
    flex-direction: column;
    text-align: center;
  }

  .phone-icon {
    font-size: 20px;
  }

  .feature-box {
    font-size: 14px;
    padding: 15px;
  }

  .swiper-slide {
    font-size: 14px;
  }

  .ticketarea {
    font-size: 12px;
    padding: 4px;
    margin: 3px;
  }

  .header {
    font-size: 14px;
    line-height: 1.4;
  }
}