
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      background-color: rgba(0, 0, 0, 1); 
      color: #fff;
    }
    .tab {
      flex: 1 1 250px;
      height: 200px;
      color: white;
      text-align: center;
      border-radius: 8px;
    text-decoration: none;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2em;
      font-weight: bold;
      transition: transform 0.3s;
    }
    .tab:hover {
      transform: scale(1.03);
    }
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      color: white;
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      align-items: center;
      padding: 0.25rem 1rem; /* reduce vertical padding */
    }

.nav-left,
.nav-right {
  width: 50%;
  box-sizing: border-box;
}

.nav-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  font-size: 0.95rem;      
  line-height: 1.1;       
}
@media (max-width: 480px) {
  .nav-left {
    font-size: 0.9rem;
  }
}

.nav-left strong {
  margin-right: 0.25rem;
}

#lang-switch {
  font-size: 0.9rem;
  margin-left: 0.25rem;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}


    @media (max-width: 800px) {
      nav {
        font-size: 0.85rem;
        padding: 8px 12px;
      }
       #lang-switch {
      margin-left: 1rem; 
      }
    }
    nav a { 
      color: inherit; text-decoration: none; 
    }
    header {
      text-align: center;
    }
    header img {
      width: 100%;
      max-height: 35vh;
      object-fit: cover;
    }
     @media (max-width: 800px) {
      header img {
        max-height: 20vh;
        object-fit: cover;
    }
    }
    h1 {
      font-size: 2.5em;
      margin: 20px 0;
    }
    .tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin: 40px auto;
      max-width: 1000px;
      padding: 0 20px;
      z-index: 1;   
    }
    .tab {
        flex: 0 1 calc(33.333% - 20px);
        height: 300px;
        color: white;
        text-align: center;
        border-radius: 8px;
        text-decoration: none;
        background-size: cover;        
        background-position: center;   
        background-repeat: no-repeat;  
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin: 40px auto;
        max-width: 1000px;
        min-width: 250px;
        padding: 0 20px;
        align-items: center;
        justify-content: center;
        font-size: 1.2em;
        font-weight: bold;
        transition: transform 0.3s;
        position: relative;
        overflow: hidden;
      }
      @media (max-width: 768px) {
        .tab {
          flex: 1 1 100%;
        }
      }
      .tab:hover {
        transform: scale(1.03);
        background-size: cover; /* <-- re-declare to preserve */
        background-position: center;
      }   
    footer {
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      flex-wrap: wrap;
    }
    .socials {
        display: flex;
        align-items: center;
        gap: 10px;
      }
    .socials a {
        color: white;
        margin-right: 15px;
        text-decoration: none;
        font-size: 1.8em; 
      }      
    .quote {
        font-style: italic;
        font-size: 0.85rem;
        text-align: right;
        flex: 1;
    
    }
    nav, footer {
      background: rgba(0, 0, 0, 0.6); 
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px); 
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 10;   
    }
    @media (max-width: 600px) {
        footer {
          flex-direction: column;
          align-items: flex-start; /* start from left */
          text-align: left;
          gap: 15px;
        }
      
        .quote {
          text-align: left;
          width: 100%;
        }
      
        .socials {
          justify-content: flex-start;
        }
      }
    
.map-container {
  width: 100%;
  max-width: 90vw;     
  height: 90vh;     
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 4rem
}

.map-container svg {
  height: 100%;
  width: auto;
  display: block;
  transform: scale(1.1) ;
}

@media (max-width: 1000px) {
  .map-container {
    width: 90vw;     
    height: 50vh;    
  }

  .map-container svg {
    margin-top: 2rem;
    max-width: 90vw;
    transform: scale(1.5) translateX(5%);
    transform-origin: center;
  }
}

.map-intro {
  max-width: 900px;
  padding: 0 1rem;
  margin-top: 4rem;
  text-align: left;
  color: white;
  font-size: 16px;
}
@media (max-width: 900px) {
  .map-intro {
    font-size:13px;
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.cat-box {
  border: 1px solid rgba(255,255,255,0.25);     
  border-radius: 8px;
  padding: 1.25rem;
  color: #eee;
  transition: border-color 0.15s, transform 0.15s;
  background: rgba(255,255,255,0.05);         
}

.cat-box:hover {
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.cat-box h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.cat-box ul {
  list-style: disc;
  margin: 0 0 0 1.25rem; 
  font-size: 16px;
  padding: 0;
}

.cat-box li {
  margin-bottom: 0.5rem;
}

.cat-box a {
  color: #0af;
  text-decoration: none;
}

.cat-box a:hover,
.cat-box a:focus {
  text-decoration: underline;
}


a,
a:link,
a:visited,
a:hover,
a:active {
  color: white !important;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* Expanded Preview Overlay */
.preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-image, .preview-desc {
  width: 50%;
  padding: 20px;
  color: white;
}

.preview-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

select {
  background: black;
  color: white;
  border: 1px solid white;
  padding: 5px 10px;
  border-radius: 5px;
}

@media (max-width: 960px) {
  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .filter-bar select {
    width: 100%;
  }
}
