    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(135deg, 
        #a5d6a7 10%, 
        #ffe082 30%, 
        #f48fb1 50%, 
        #81d4fa 70%, 
        #a5d6a7 90%);
      color: #222;
      background-image:
        url("data:image/svg+xml;utf8,\
        <svg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'>\
          <path fill='none' stroke='rgba(255, 152, 0, 0.15)' stroke-width='3' d='M0 30 Q15 0 30 30 T60 30 T90 30 T120 30'/>\
        </svg>"),
        linear-gradient(135deg, #a5d6a7 10%, #ffe082 30%, #f48fb1 50%, #81d4fa 70%, #a5d6a7 90%);
      background-repeat: repeat-x, no-repeat;
      background-position: top left, 0 0;
      background-size: 120px 60px, auto;
      transition: font-size 0.2s ease;
    }

    header {
      background-color: #2e7d32;
      color: white;
      padding: 20px;
      text-align: center;
      border-bottom: 2px solid #ccc;
      position: relative;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    }

    header h1 {
      margin: 0;
      font-size: 1.8em;
      color: white;
    }

    header p {
      margin: 5px 0 0;
      font-size: 1em;
      color: #dcedc8;
    }

    header button {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #ff9800;
      color: white;
      border: none;
      padding: 8px 15px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      box-shadow: 0 2px 6px rgba(255, 152, 0, 0.7);
      transition: background-color 0.3s ease;
    }

    header button:hover {
      background-color: #e65100;
    }

    nav {
      display: flex;
      justify-content: center;
      background: #a5d6a7;
      padding: 12px 0;
      gap: 30px;
      border-bottom: 1px solid #8bc34a;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    nav a {
      text-decoration: none;
      font-weight: bold;
      color: #2e7d32;
      font-size: 1.1em;
      padding: 6px 12px;
      border-radius: 5px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    nav a:hover {
      background-color: #ff9800;
      color: white;
    }

    #fontControls {
      text-align: center;
      margin: 20px 0;
    }

    #fontControls button {
      padding: 6px 14px;
      margin: 0 5px;
      font-size: 1em;
      border: none;
      background: #81c784;
      color: white;
      border-radius: 20px;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(129, 199, 132, 0.7);
      transition: background-color 0.3s ease;
    }

    #fontControls button:hover {
      background: #66bb6a;
    }

   #searchInput {
  width: 250px;       /* fixed width */
  max-width: 100%;    /* still shrink on mobile */
  padding: 10px;
  margin: 0 auto 20px; /* center with some space below */
}


    #searchInput:focus {
      border-color: #ff9800;
      outline: none;
      box-shadow: 0 0 8px rgba(255, 152, 0, 0.7);
    }

    .container {
      max-width: 900px;
      margin: auto;
      padding: 20px;
    }

    #popular-activities h2 {
      text-align: center;
      color: #2e7d32;
      margin-bottom: 30px;
      text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    }

    .activity {
      background: #ffffffcc;
      padding: 20px;
      margin-bottom: 30px;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.12);
      transition: transform 0.3s ease;
    }

    .activity:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
    }

    .activity img {
      width: 100%;
      max-height: 300px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 12px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    }

    .activity h3 {
      color: #ef6c00;
      margin-bottom: 8px;
    }

    .activity p {
      margin: 6px 0;
      font-size: 1em;
      color: #444;
    }

    .activity a {
      color: #2e7d32;
      font-weight: bold;
      text-decoration: none;
    }

    .activity a:hover {
      color: #ff9800;
      text-decoration: underline;
    }

    .footer {
      background: #f1f1f1;
      padding: 15px;
      text-align: center;
      font-size: 0.9em;
      color: #555;
      margin-top: 40px;
      box-shadow: inset 0 1px 4px rgba(0,0,0,0.05);
    }

    /* Chatbot */
    #chatToggle {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
      padding: 12px 18px;
      background: #2e7d32;
      color: white;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-size: 18px;
      box-shadow: 0 4px 10px rgba(46,125,50,0.6);
      transition: background-color 0.3s ease;
    }

    #chatToggle:hover {
      background-color: #ff9800;
    }

    #chatbot {
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 320px;
      max-height: 450px;
      background: white;
      border: 1px solid #ccc;
      border-radius: 15px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.2);
      overflow: hidden;
      display: none;
      flex-direction: column;
      font-size: 1em;
      z-index: 10000;
    }

    #chatbot.active {
      display: flex;
    }

    #chatClose {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
      z-index: 10001;
    }

    #chatbotHeader {
      background: #2e7d32;
      color: white;
      padding: 15px;
      font-weight: bold;
      text-align: center;
      user-select: none;
      position: relative;
    }

    #chatLog {
      flex: 1;
      padding: 12px 15px;
      overflow-y: auto;
      font-size: 0.95em;
      background: #f9fbe7;
    }

    #quickQuestions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      padding: 10px;
      border-top: 1px solid #ccc;
      background: #e8f5e9;
    }

    .quickQBtn {
      background-color: #81c784;
      color: white;
      border: none;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.9em;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(129, 199, 132, 0.7);
      transition: background-color 0.3s ease;
    }

    .quickQBtn:hover {
      background-color: #66bb6a;
    }

    #userInput {
      border: none;
      border-top: 1px solid #ccc;
      padding: 12px 15px;
      font-size: 1em;
      width: 100%;
      box-sizing: border-box;
    }

    .message {
      margin-bottom: 10px;
      line-height: 1.3em;
      word-wrap: break-word;
    }

    .message strong {
      color: #2e7d32;
    }

    /* Responsive tweaks for mobile */
    @media (max-width: 600px) {
      nav {
        flex-direction: column;
        gap: 12px;
        padding: 10px 0;
      }

      nav a {
        font-size: 1em;
        padding: 8px 10px;
      }

      #fontControls {
        margin: 15px 10px;
      }

      #fontControls button {
        padding: 8px 12px;
        font-size: 0.9em;
      }

      #searchInput {
        width: 90%;
        max-width: none;
        font-size: 1em;
        margin: 10px auto 20px;
      }

      .container {
        padding: 15px 10px;
      }

      .activity img {
        max-height: 200px;
      }

      #chatbot {
        width: 90vw;
        max-height: 60vh;
        right: 5vw;
        bottom: 80px;
      }

      header h1 {
        font-size: 1.5em;
      }

      header p {
        font-size: 0.9em;
      }

      #chatToggle {
        padding: 10px 14px;
        font-size: 16px;
      }
    }
    #language-toggle {
  text-align: center;
  margin: 20px 0;
}

#language-toggle button {
  background-color: #4caf50; /* nice green */
  color: white;
  border: none;
  padding: 12px 25px;      /* make them bigger */
  margin: 5px;              /* spacing between buttons */
  font-size: 1.1em;         /* bigger text */
  font-weight: bold;
  border-radius: 8px;       /* rounded corners */
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

#language-toggle button:hover {
  background-color: #388e3c;  /* darker green on hover */
  transform: translateY(-2px); /* subtle lift effect */
}

    @media (max-width: 600px) {
      header {
        padding: 20px 10px 40px 10px;
        position: relative;
      }

      header button {
        position: static;
        display: block;
        margin: 10px auto 0 auto;
        width: 140px;
        font-size: 1em;
        padding: 10px 0;
        box-shadow: none;
      }
    }

#languageControls {
  position: static;       /* remove the "stuck to corner" effect */
  text-align: center;     /* center horizontally */
  margin: 20px 0;         /* spacing below title */
}

#languageControls button {
  display: inline-block;  /* line up side by side */
  margin: 5px;
  padding: 10px 18px;
  font-size: 1rem;
  border: 2px solid #0077cc;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
}

#languageControls button:hover {
  background-color: #0077cc;
  color: #fff;
}
.container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* Activities on left */
#leisure-activities {
  flex: 2;
}

/* Calendar on right */
#event-calendar {
  flex: 1;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}

#calendar div {
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s;
}

#calendar div:hover {
  background: #317EFB;
  color: white;
}

#calendar .today {
  background: #ffcc00;
  font-weight: bold;
}

#event-details {
  margin-top: 15px;
}

#mapIcon {
  position: fixed;      /* fixed to viewport */
  top: 10px;            /* distance from top */
  right: 10px;          /* distance from right */
  display: flex;        /* icon + text in a row */
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  background-color: white;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 9999;        /* above all other elements */
}

#mapIcon img {
  width: 30px;
  height: 30px;
}

#mapIcon:hover {
  transform: scale(1.05);
  transition: transform 0.2s;
}
