:root {
  --accent: #000000;
  --accent-2: #028090;
  --sand: #F7F1E1;
  --dark: #000000;
  --muted: #000000;
  --glass: rgba(255, 255, 255, 0.75);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--dark);
  background: linear-gradient(180deg, #c9eef2 0%, #c9eef2 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.hero {
  background-image: linear-gradient(180deg, rgba(5,102,141,0.18), rgba(2,128,144,0.06)), url(zakbeach.jpg);
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  color: #ffffff;
}
.container { max-width: 1100px; margin: 0 auto; }
.logo { display: flex; flex-direction: column; }
.brand { font-family: 'Playfair Display', serif; font-size: 80px; line-height: 1; margin: 0; }
.tag { font-size: 30px; opacity: .95; }

.tabs {
  background: var(--glass);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.tab-btn {
  background: transparent;
  border: 0;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
}
.tab-btn[aria-selected="true"] {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 6px 18px rgba(2,128,144,0.18);
}

.card {
  background: white;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 22px rgba(8,20,40,0.06);
}

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
}
footer {
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to bottom, #a8edea, #fed6e3);
    }

    /* Navigation bar container */
    nav {
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 20px 0;
    }

    /* Navigation list styling */
    nav ul {
      list-style: none;
      margin: 0 auto;
      padding: 0;
      max-width: 1200px; /* wider layout */
      display: flex;
      justify-content: center; /* keeps nav centered */
      align-items: center;
      gap: 120px; /* controls spacing between tabs */
    }

    nav li {
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    nav a {
      text-decoration: none;
      color: #081475;
      font-weight: 600;
      transition: color 0.3s ease, border-bottom 0.3s ease;
      padding: 8px 16px; /* adds breathing room around text */
    }

    nav a:hover {
      color: #218da6;
      border-bottom: 2px solid #218da6;
      padding-bottom: 6px;
    }

    /* Optional hero section for travel feel */
    header {
      text-align: center;
      padding: 100px 20px;
      background-image: url(zakbeach.jpg);
      background-size: cover;
      background-position: center;
      color: white;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    }

    header h1 {
      font-size: 3em;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.2em;
    }
  
  :root {
    --bg: #f5f7fa;
    --card: #fff;
    --accent: #ffffff;
    --muted: #4b5563;
    --hover: #e6f0fb;
      }
 
  body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: #111827;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  header {
    padding: 18px 20px;
    text-align: center;
  }
  h1 { margin: 0; font-size: 1.4rem; color: var(--accent); }

  main {
    display: flex;
    gap: 24px;
    padding: 20px;
    flex: 1 1 auto;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
  }

  .map-wrapper {
    background: var(--card);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(2,6,23,0.08);
    padding: 18px;
    max-width: 720px;
    width: 100%;
  }

  /* svg sizing */
  svg {
    width: 100%;
    height: auto;
    display: block;
  }

  /* region styling */
  .region {
    fill: #cfe7ff;
    stroke: #9bc4ff;
    stroke-width: 1;
    cursor: pointer;
    transition: transform .12s ease, fill .12s;
  }
  .region:hover,
  .region:focus {
    fill: var(--hover);
    transform: translateY(-3px);
    outline: none;
  }
  .region:active { transform: translateY(-1px) scale(.995); }

  .region-label {
    font-size: 12px;
    fill: #06385a;
    pointer-events: none;
  }

  .info {
    max-width: 320px;
    padding: 14px;
    background: var(--card);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(2,6,23,0.06);
    color: var(--muted);
    line-height: 1.45;
  }

  .hint { font-size: .9rem; margin-bottom: 8px; color: #374151; }

  /* Modal */
  .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,0.45);
    align-items: center;
    justify-content: center;
    z-index: 40;
  }
  .modal[aria-hidden="false"] { display: flex; }

  .panel {
    background: white;
    width: min(720px, 94%);
    max-height: 92vh;
    overflow: auto;
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.18);
    position: relative;
  }
  .panel h2 { margin: 0 0 8px 0; color: var(--accent); }
  .close-btn {
    position: absolute;
    right: 12px;
    top: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
  }
  .close-btn:focus { outline: 2px solid #cfe7ff; border-radius: 6px; }

  .top-sites { margin: 12px 0 0 0; padding-left: 18px; color: #374151; }
  .top-sites li { margin-bottom: 6px; }

  /* keyboard focus visible */
  .region[tabindex]:focus { box-shadow: 0 0 0 3px rgba(11,102,178,0.12); }

  /* small screens */
  @media (max-width: 880px) {
    main { flex-direction: column; align-items: stretch; padding: 12px; }
    .map-wrapper { order: 0; }
  }

    header h1 {
      margin: 0;
      font-size: 2.5rem;
    }

    section {
      max-width: 1000px;
      margin: auto;
      padding: 30px;
    }

    .tip-section {
      margin-bottom: 40px;
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    h2 {
      color: #0a4fa3;
      margin-bottom: 15px;
    }

    ul {
      line-height: 1.8;
    }

    .highlight {
      background: #e6f2ff;
      padding: 10px 15px;
      border-left: 5px solid #0a4fa3;
      margin: 15px 0;
    }

    footer {
      background: #56A19D;
      color: white;
      text-align: center;
      padding: 15px;
      margin-top: 40px;
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 1.8rem;
      }
    }
:root{
  --border-size: 40px;
}
body {
        margin: 0;
        background: #56A19D;
        overflow: hidden;
        font-family: Arial, sans-serif;
    }

    /* Hidden toggle checkbox */
    #toggle {
        display: none;
    }

    /* Toggle Button */
    label {
        position: fixed;
        z-index: 10;
        top: 20px;
        left: 20px;
        padding: 10px 20px;
        background: #726A55;
        border-radius: 8px;
        color: white;
        cursor: pointer;
        user-select: none;
    }

    /* Bubble container */
    .bubbles {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        overflow: hidden;
        pointer-events: none;
    }

    /* Individual bubble */
    .bubble {
        position: absolute;
        bottom: -100px;
        opacity: 0.7;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.7);
        animation: rise 6s linear infinite;
    }

    /* 10 bubbles with different sizes & positions */
    .bubble:nth-child(1){ left:10%; width:20px; height:20px; animation-duration:7s; }
    .bubble:nth-child(2){ left:20%; width:25px; height:25px; animation-duration:6s; }
    .bubble:nth-child(3){ left:35%; width:15px; height:15px; animation-duration:5s; }
    .bubble:nth-child(4){ left:50%; width:30px; height:30px; animation-duration:8s; }
    .bubble:nth-child(5){ left:65%; width:18px; height:18px; animation-duration:5.5s; }
    .bubble:nth-child(6){ left:75%; width:22px; height:22px; animation-duration:7s; }
    .bubble:nth-child(7){ left:85%; width:28px; height:28px; animation-duration:6.5s; }
    .bubble:nth-child(8){ left:45%; width:10px; height:10px; animation-duration:5s; }
    .bubble:nth-child(9){ left:55%; width:35px; height:35px; animation-duration:9s; }
    .bubble:nth-child(10){ left:30%; width:26px; height:26px; animation-duration:7.5s; }

    @keyframes rise {
        0% { transform: translateY(0); opacity:0.8; }
        100% { transform: translateY(-120vh); opacity:0; }
    }

    /* When checkbox is checked → pause animation */
    #toggle:checked ~ .bubbles .bubble {
        animation-play-state: paused;
    }
    :root{
      --accent-2:#ef4444;
      --bg:#ffffff;
      --panel:#fff;
      --shadow: 0 6px 18px rgba(0,0,0,0.12);
    }
    /* region styling */
    .region path{fill:#c7e6ff;stroke:#0ea5e9;stroke-width:2;transition:all .18s ease}
    .region[data-region="Peloponnese"] path{fill:#ffd6e0;stroke:#ef4444}
    .region[data-region="Macedonia"] path{fill:#e6e6ff;stroke:#7c3aed}
    .region[data-region="Attica"] path{fill:#cfeee0;stroke:#04a76a}
    .region[data-region="Ionian Islands"] path{fill:#fff3c4;stroke:#f59e0b}
    .region[data-region="Aegean Islands"] path{fill:#e7fdfd;stroke:#06b6d4}
    .region[data-region="Crete"] path{fill:#ffd9b3;stroke:#d97706}
    .region:hover path, .region:focus path{filter:brightness(.95);transform:scale(1.001);cursor:pointer;opacity:.95}
    .region:focus{outline:3px solid rgba(14,165,233,.14);outline-offset:4px}
    .legend{flex:0 0 300px;padding:12px}
    .hint{font-size:13px;color:#475569;margin-bottom:8px}
    /* modal */
    .modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(2,6,23,0.45);z-index:60}
    .modal[aria-hidden="true"]{display:none}
    .panel{background:var(--panel);padding:18px;border-radius:10px;max-width:520px;width:min(94%,520px);box-shadow:var(--shadow)}
    .close-btn{position:absolute;right:12px;top:10px;background:transparent;border:0;font-size:28px;line-height:1;color:#374151;cursor:pointer}
    footer{padding:18px;text-align:center;color:#64748b;font-size:14px}
    ul.top-sites{margin:8px 0 0 16px}
    @media (max-width:720px){
      .map-wrapper{flex-direction:column}
      .legend{width:100%}
    }
    body {
    overflow: hidden;
}
/* Allow page scrolling again */
body {
    overflow-y: auto;   /* scroll normally */
    overflow-x: hidden; /* avoid accidental sideways scroll */
}
