@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
  font-family: "Tinos", serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }

  header h1 {
    font-family: "Dancing Script", cursive;
    font-size: 3em;
  }
  
  header {
    background-color: #003366;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  header img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
  }
  
  nav {
    background-color: #005599;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 6px;
    transition: background-color 0.3s;
  }
  
  nav a:hover {
    background-color: #0077cc;
  }
  
  section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .gallery img {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .room-info {
    background-color: #f1f1f1;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
  }
  
  th, td {
    border: 1px solid #ccc;
    text-align: center;
    padding: 12px;
  }
  
  th {
    background-color: #eee;
  }
  
  .occupied {
    background-color: #f99;
  }
  
  .free {
    background-color: #9f9;
  }
  
  footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 30px 20px;
  }

#fotky h2,
#pokoj h2,
#kalendar h2 {
  text-align: center;
}



  @media (max-width: 768px) {
    header h1 {
      font-size: 2em;
    }
  
    nav {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .gallery img {
      width: 90%;
    }
  
    .room-info {
      padding: 20px;
    }
  
    button {
      width: 100%;
      font-size: 14px;
    }
  
    table, th, td {
      font-size: 14px;
      padding: 8px;
    }
  
    section {
      padding: 30px 15px;
    }

    h1, h2 {
      text-align: center;
    }

    .gallery {
      flex-direction: column;
      align-items: center;
    }
  
    .gallery img {
      width: 100%;
      max-width: 350px;
    }
  }
  


