/* Mobilde tam ekran boyu */
@media (max-width: 768px) {
  /* Main nav */
  .menu {
    display: block;
    color: var(--primary_color);
  }

  .main-nav__items {
    display: none; /* Başta gizli */
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
  }

  .main-nav li a {
    color: white;
  }

  .main-nav__items.show {
    display: flex; /* Açıldığında göster */
  }

  /*Dropdown menu*/
  .dropdown .dropdown-menu {
    display: none !important;
    position: static !important; /* mobilde layout bozulmasın */
  }

  /* .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    position: static; 
  } */

  /*main header */

  #logo-section {
    height: 25vh;
  }
  #logo-container img {
    width: 100px;
  }

  /*Home Section b */
  #home__b img {
    width: 100px;
  }

  /*Home Section c */
  .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .card {
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  .card-image {
    display: block;
    width: 100%;
    height: 150px;
  }

  .card div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Saydam arka plan */
    padding: 15px;
    text-align: center;
    color: white;
  }

  .card div h3,
  .card div p,
  .card div a {
    color: white !important;
    margin: 5px 0;
  }

  .card div a.card-details {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
  }
  /*Footer */
  .footer-content2 {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }

  .footer-content2 h4 {
    padding-top: 0.5rem;
  }

  /* **************** Contact *********************** */
  .contact-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "map";
  }

  /* *********** Services ************/

  .content-col {
    order: 1;
  }
  .image-col {
    order: 2;
  }
  #services img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: 75% 10%; /* x=75%, y=25% */
    padding-top: 1rem;
  }

  /*********** Lua Sports *****************/
  .luasports_header img {
    height: 9rem;
  }

  .luasports_header h1 {
    font-size: 1.2rem;
    padding-top: 30px;
  }

  section.bg-sports h2.p-2 {
    padding: 0 1rem !important;
  }

  /*********** Lua Mice *****************/

  .mice-card {
    padding: 1rem;
    font-size: 0.7rem;
  }
  .mice-hotel-img {
    width: 90%;
    height: auto;
    margin-left: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 25% 0;
    box-shadow: 15px 15px 5px #eaa258;
  }

  .mice-hotel-header {
    line-height: 1.1;
    font-size: 1.8rem;
  }

  .mice-pool-header {
    margin-top: 1rem;
    font-size: 1.5rem;
    line-height: 1.1;
  }
  .mice-border {
    width: 8rem;
  }

  .mice-img {
    width: 80%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 25% 0;
    box-shadow: 15px 15px 5px #eaa258;
  }

  .mice-ikons {
    width: 90%;
  }

  .mice-content {
    font-size: 0.8rem;
  }

  /*************** About *****************/
  .about-title {
    padding-top: 45px;
  }

  #about_section-b h4 {
    padding-top: 0.5rem;
  }

  /*************** Contact *****************/

  .contact-container {
    padding: 0.5rem 0;
    gap: 0.5rem;
  }

  .contact-container h2 {
    padding-bottom: 0.5rem;
  }

  .info p {
    padding-bottom: 0.3rem;
  }
}
