body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #003366;
    color: white;
    padding: 2%;
    text-align: center;
}

header nav ul {
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 40px;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    margin: 10px;
    border-radius: 10px;
}

.apartment-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.apartment {
    width: 300px;
    padding: 20px;
    border: 1px solid #cccccc;
    border-radius: 10px;
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}
.logo img {
  height: 60px; /* you can adjust the size */
  width: auto;
  display: block;
}
.apartments {
    padding: 40px 20px;
    text-align: center;
  }
  
  .apartment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .apartment-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .apartment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  }
  
  .apartment-card img {
    width: 100%;
    height: 70%;
    object-fit: cover;
  }
  
  .apartment-card h3 {
    margin: 15px 0;
    font-size: 22px;
  }
  
  /* scale for the maps*/
  .map-section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .map-section h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }
  
  .map-section a iframe {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
  }
  
  .map-section a:hover iframe {
    transform: scale(1.02);
  }
  
  /*flag size */

  .language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
  }
  
  .language-switcher img {
    width: 30px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .language-switcher img:hover {
    transform: scale(1.1);
  }
  