@charset "UTF-8";

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
}

/* Header/Navbar Styling */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #5CB85C; /* 加了 # */
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.navbar .center-nav ul li {
  position: relative; /* For dropdowns */
}

.navbar .center-nav ul li a {
  text-decoration: none;
  color: whitesmoke;
  font-size: 18px;
  padding: 6px 8px;
  transition: color 0.2s ease-in-out;
}

.navbar .center-nav ul li a:hover {
  color: white; 
}

/* Logo alignment */
.navbar .logo {
  position: absolute;
  left: 20px;
}

.navbar .logo img {
  height: 24px;
}

/* Dropdown menu style */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  padding: 10px 0;
  z-index: 999;
}

.dropdown-content a {
  color: #FF7043 !important;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #FFEFBA;
  color: #FF7043 !important;
}


/* Headings */
h1, h2, h3 {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

/* Header */
.header {
  position: relative; /* Needed for absolute positioning inside */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  background-color: white;
  border-bottom: 1px solid #e5e5e5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  top: 0;
  z-index: 999;
}

.logo img {
  height: 32px;
}


/* Right: Search */
.search-bar {
  position: absolute;
  right: 40px;
  display: flex;
  align-items: center;
}

.search-bar input[type="text"] {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.search-bar input[type="text"]:focus {
  border-color: #0071e3;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,113,227,0.2);
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}


/* Hero Background Video */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Overlay Section */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 90%; /* Ensure it's responsive */
  max-width: 800px; /* Limit maximum width */
}

/* Hero Overlay Section */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 100px; /* Leave 10px from the left edge */
  transform: translateY(-50%); /* Vertically center it */
  text-align: left; /* Align text to the left */
  color: white;
  z-index: 10;
  width: 90%; /* Ensure it's responsive */
  max-width: 800px; /* Limit maximum width */
}

/*Hero Image Background*/
.half-hero {
  height: 60vh;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position:center 30%; /* Show more of the top */
  background-repeat: no-repeat;
  z-index: 1;
  transition: filter 0.4s ease;
}

/* ✅ 页面专属背景图 */
.hero-visitus::before {
  background-image: url("images/pexels-pixabay-47312.jpg");
}

.hero-buy::before {
  background-image: url("images/Exhibits - leopard.jpg");
}

.hero-join::before {
  background-image: url("images/otter.jpg");
}

.hero-events::before{
    background-image: url(images/tapir2.jpg)
}

.hero-contactus::before{
    background-image: url(images/pexels-jonnylew-1547836.jpg)
}

.hero-aboutus::before{
    background-image: url(images/pexels-jimbear-998593.jpg )
}

/* ✅ 暗化效果悬停 */
.hero:hover::before {
  filter: brightness(0.5);
}


/* Hero Title - Plain Color */
.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FFB300; /* Solid color instead of gradient */
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 50px;

}

/* Hero Paragraph */
.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8); /* Lighter white with opacity */
  line-height: 1.5; /* More space between lines */
  margin-top: 20px; /* Optional: separates from title more */
}
 


.cta-button {
  background-color: #ff7f00;
  color: white;
  padding: 15px 30px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #f0a500;
}


/* Video Controls (Right Icon) */
.video-controls {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  cursor: pointer;
  z-index: 15;
}

.video-controls .icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.video-controls .icon:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#hero-video {
  width: 100%;
  height: auto;
  z-index: 1;
  transition: filter 0.5s ease;
}

.hero:hover #hero-video {
  filter: brightness(40%); /* 可调暗度 */
}

.hero-dark-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.hero:hover .hero-dark-overlay {
  opacity: 0.5; /* 可调强度，0.3 - 0.7 */
}

#hero-video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  height: 32px;
  margin-right: 8px;
}

.logo-text {
  font-size: 18px;
  color: black;
  font-weight: 500;
}

.nav-bar a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s;
}


/* Navigation Bar */
.center-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.center-nav a,
.dropbtn {
  color: 43A047;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 20px 16px;
  border-radius: 12px; /* Explicitly set border-radius for both states */
  transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease; /* Include border-radius in transition */
    
}

.center-nav a:hover,
.dropbtn:hover {
  background-color: #FFB300;
  color: 43A047;
  border-radius: 12px; /* Same border-radius on hover */
    
}



/* Dropdown */
.dropdown {
  position: relative;
    
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFF9E5;
    width:auto;
  min-width: 160px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  z-index: 100;

  left: 50%;                     /* center horizontally */
  transform: translateX(-50%);   /* offset by 50% to center it exactly */
}

.dropdown-content a {
  color: #43A047;
  padding: 12px 16px;
  text-decoration: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown-content a:hover {
  background-color: #FFEFBA;
  color: #43A047;
}

.dropdown:hover .dropdown-content {
  display: block;
}



/* Chat Toggle Button */
.chat-toggle {
  position: fixed;
  right: 30px;
  bottom: 20px;
  background-color: #5CB85C;
  color: white;
  padding: 12px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  border: none;
  transition: background-color 0.3s ease;
}

.chat-toggle:hover {
  background-color: #4CAE4C;
}

/* Chat Box */
.chat-launcher {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #4CAF50;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}

.chat-box {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 300px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.chat-header {
  background-color: #2e7d32;
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-suggestions {
  padding: 10px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.chat-suggestions button {
  background-color: #FFB300;
  color: white;
  border: none;
  padding: 6px 10px;
  margin: 5px 5px 0 0;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
}

.chat-suggestions button:hover {
  background-color: #43A047;
  color: white; /* optional but explicit */
}

.chat-messages {
  padding: 10px;
  height: 200px;
  overflow-y: auto;
  font-size: 14px;
}

.chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.chat-input button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0 16px;
  cursor: pointer;
}
.modal1 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal1 .modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  font-family: "Roboto", sans-serif;
  color: #333;
  text-align: center;
}

/* Modal Background */
#learnMoreModal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Card Container */
.modal-card {
  background-color: #fff;
  margin: 10% auto;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.3s ease;
}

/* Close Button */
.close-btn {
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  display: block;
  text-align: right;
  color: #666;
  font-weight: bold;
}

/* Image Styling */
#learnMoreImage {
  width: 100%;
  height: auto;
  display: block;
}
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }
/* Text Content */
.card-text {
  padding: 20px;
  font-family: "Roboto", sans-serif;
}

#learnMoreTitle {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #2e7d32;
}

#learnMoreBody {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Optional Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.card-text {
  padding: 20px;
}

.card-text h3 {
  color: #2e7d32;
  font-size: 22px;
}

.card-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

/* For purchaseModal */
.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  color: #333;
}

/* Step Bar Container */
.step-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto;
  max-width: 800px;
  position: relative;
  padding: 0 10px;
}

/* Each Step */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  text-align: center;
}

.step .circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background-color: white;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.step p {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #999;
}

/* Active Step */
.step .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.step.active .circle {
  background-color: #FFB300; /* Highlighted color */
border:none;
}

.step.active p {
  font-weight: bold;
  color: #FFB300;
}

/* Connecting Lines */
.line {
  height: 2px;
  flex: 1;
  background-color: #ccc;
  margin: 0 5px;
}

.step-bar .step.completed .circle {
  background-color: #FFB300;
  color: white;
  border-color: #FFB300;
}

.step-bar .step.completed p {
  color: #444;
}

/* Buy Tickets.html- Tickets Packages */
.calendar-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.calendar-content {
  background-color: white;
  padding: 40px 30px; /* Increased padding */
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  text-align: center;
  width: 95%; /* Increased from 90% */
  max-width: 600px; /* Increased from 400px */
  font-size: 1.1rem; /* Larger font */
}
.close-calendar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.calendar-content input[type="date"] {
  padding: 10px;
  font-size: 1rem;
  margin: 20px 0;
  width: 100%;
}

.calendar-content button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.calendar-content button:hover {
  background-color: #FFB300;
}

.date-card.selected,
.more-dates.selected {
  background-color: #FFB300;
  color: white;
  font-weight: bold;
}

/* Ensure child text stays white */
.date-card.selected .day,
.date-card.selected .date,
.more-dates.selected .label {
  color: white;
}

/* Optional: ensure transition is smooth */
.date-card,
.more-dates {
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Blocked cards (temporarily disabled, if needed) */
.date-card.blocked {
  pointer-events: none;
  opacity: 0.5;
}

/* Avoid overriding highlight when more-dates is selected */
.more-dates.selected ~ .date-card.selected {
  background-color: #fff !important;
  color: inherit !important;
  border: 1px solid #ddd !important;
}

/* About Section */
.main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e6f9e6; /* Solid light green background */
  padding: 20px;
  margin: 20px 0;
  flex-direction: row-reverse; /* This reverses the order of the sections */
}

/* Left Section with Image (Now on the Right) */
.aside-left {
  flex: 1;
  margin-left: 20px;
}

.aside-left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Right Section with Text (Now on the Left) */
.aside-right {
  flex: 2;
}

.aside-right h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2e8b57; /* Green color for the heading */
}

.aside-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333; /* Solid black text color */
}

.aside-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* Announcement Section */
.announcement {
  display: flex;
  justify-content: flex-start; /* align content to the left */
  align-items: center;
  background-color: #FFB300;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 700px; /* smaller and better width */
  margin: 20px auto; /* center the container */
  text-align: left;
}

/* Header style for h3 */
.announcement-right h3 {
  font-size: 1.6em;
  color: white; /* Dark gray text */
  margin-bottom: 10px;
}

/* Paragraph style */
.announcement-right p {
  font-size: 1em;
  color: white; /* Lighter gray text */
  line-height: 1.5;
  margin-bottom: 0;
}


/* Wild World Section */
.wild-world {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns */
  gap: 20px;
  padding: 40px;
  background-color: #e6f9e6; /* Light green background */
  margin: 20px 0;
}

/* Card Styling */
.card {
  background-color: white; /* Default white background */
  color:  #43A047; /* Default text color */
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, 
              opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  opacity: 1;
}

/* Card Image */
.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Card Heading */
.card h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

/* Card Text */
.card p {
  font-size: 1rem;
  line-height: 1.5;
  color: white; /* ✅ Ensure paragraph stays black */
}

/* Hovered Card Styling */
.card:hover {
  background-color: #FF7043; /* Bright orange on hover */
  color: white; /* Text turns white */
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Dim other cards when one is hovered */
.wild-world:has(.card:hover) .card:not(:hover) {
  opacity: 0.3;
}

/* Ready to Explore Section */
.explore-section {
  text-align: center;
  margin: 50px 0;
  padding: 20px;
}

.explore-section h2 {
  font-size: 2.5rem;
  color: #FFB300; /* Golden Yellow */
  margin-bottom: 10px;
  text-decoration: none; 
}

.zoo-exhibit-description {
  width: 55%;
  margin: 0 auto; /* Center it */
  font-size: 1rem;
  line-height: 1.6;
}

/* Exhibits at Zoo Section */
.exhibits-at-zoo {
  background-color: #f8fdf8;
  padding: 60px 20px;
  text-align: center;
}

.exhibits-at-zoo h2 {
  font-size: 2.4rem;
  color: #2e8b57;
  margin-bottom: 30px;
}

.exhibit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.exhibit-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.exhibit-card:hover {
  background-color: #FFB300;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.exhibit-card:hover h3,
.exhibit-card:hover p {
  color: #fff;
}

.exhibit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.exhibit-card h3 {
  font-size: 1.3rem;
  color: #444;
  margin: 15px 20px 10px;
}

.exhibit-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0 20px 20px;
  line-height: 1.5;
}

/* Ticket Purchase Section */
.ticket-section {
  text-align: center;
  margin: 50px 0;
  padding: 20px;
  background-color: #e6f9e6; /* Light green background */
}

.ticket-section h2 {
  font-size: 2.5rem;
  color: #2e8b57; /* Green text color */
  margin-bottom: 20px;
}

.ticket-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns */
  gap: 20px; /* Spacing between cards */
}

.ticket-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  text-align: center;
}

.ticket-card img {
  width: 100%;
  height: 200px; /* Fixed height for images */
  object-fit: cover; /* Ensure the image covers the area */
  border-radius: 10px; /* Rounded corners for the images */
}

.ticket-card h3 {
  font-size: 1.6rem;
  color: #FF704D; /* Bright orange text color */
  margin-top: 15px;
}

.ticket-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-top: 10px;
}

.button-group {
  margin-top: 20px;
}

.purchase-btn,
.learn-more-btn {
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Purchase button */
.purchase-btn {
  background-color: #FF7043;
}

.purchase-btn:hover {
  background-color: #e25d33; /* Slightly darker than FF7043 */
     color: white;
}

/* Learn more button */
.learn-more-btn {
  background-color: #FFB300;
  color: white;
}

.learn-more-btn:hover {
  background-color: #d79e00; /* Slightly darker golden shade */
     color: white;
}
/* Main Content Section */
.main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 2rem;
  flex-wrap: wrap;
}

.aside-left {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.aside-left img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.aside-right {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.aside-right h1,
.aside-right h3 {
  margin-bottom: 10px;
}

/* Buttons */
.call-button,
button {
  padding: 12px 24px;
  background-color: cornflowerblue;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.call-button:hover,
button:hover {
  background-color: lightpink;
  color: black;
}

/* Column Section */
.row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.col {
  width: 30%;
  padding: 1rem;
  box-sizing: border-box;
}

.col img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}


/* Form Section */
.contact-form-section {
  background-color: #f7fdf7;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
}

.form-title {
  text-align: center;
  font-size: 30px;
  color: #2e7d32;
  margin-bottom: 40px;
  font-weight: bold;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

.contact-form {
  flex: 1 1 550px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4caf50;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  background-color: #43a047;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #388e3c;
}

/* Contact Info and Map */
.contact-info {
  flex: 1 1 400px;
}

.contact-info iframe {
  border-radius: 10px;
  margin-bottom: 20px;
}

.address-block p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #444;
}

/* Other Contact Section */
.other-contact-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
}

.other-contact-section h2 {
  text-align: center;
  font-size: 28px;
  color: #2e7d32;
  margin-bottom: 40px;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background-color: #f1f8f4;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  font-size: 18px;
  color: #2e7d32;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: #333;
  margin: 4px 0;
  word-break: break-word;
}

.contact-card .desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-top: 6px;
}


/* Privacy Note */
.privacy-note {
  font-size: 13px;
  color: #666;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
}

.privacy-note a {
  color: #ffb300;
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}


/* Ticket and Packages */
    body {
      font-family: Arial, sans-serif;
      background-color: #f0f8f0;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 120px;
      text-align: center;
    }

    h1 {
      color: #4CAF50;
      margin-bottom: 0.2em;
        font-size: 2.4rem
    }

    .subtext {
      font-size: 1.2em;
      color: #5a3e36;
      margin-top: 0;
    }

    .currency-note {
      font-size: 0.9em;
      color: #777;
      margin-bottom: 20px;
    }

    .date-picker {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
    }

    .date-card, .more-dates {
      background-color: white;
      border-radius: 8px;
      width: 100px;
      padding: 10px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .date-card:hover, .more-dates:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .day {
      font-weight: bold;
      color: #333;
    }

    .date {
      font-size: 0.9em;
      color: #555;
      margin: 4px 0;
    }

 .date-card.selected,
.more-dates.selected {
  background-color: #FFB300;
  color: white;
  font-weight: bold;
}

    .calendar-modal {
      position: fixed;
      top: 0;
      left: 0;
      right:0;
      bottom:0;
      background-color: rgba(0,0,0,0.5);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }

    .calendar-content {
      background: white;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
    }

    .close-calendar {
      float: right;
      cursor: pointer;
      font-size: 20px;
    }

    .nationality-container {
      margin-top: 30px;
    }

    .dropdown1 {
      width: 100%;
      padding: 12px;
      font-size: 1em;
      border: 1px solid #ccc;
      border-radius: 8px;
      background-color: #fff;
      color: #555;
    }

    #confirmButton {
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 1em;
      border: none;
      border-radius: 8px;
      background-color: #ccc;
      color: white;
      cursor: not-allowed;
    }

    #confirmButton.active {
      background-color: #FFB300;
      cursor: pointer;
    }

.nationality-container {
  margin-top: 30px;
}

.dropdown1 {
  width: 100%;
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #555;
}

#confirmButton {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  background-color: #ccc;
  color: white;
  cursor: not-allowed;
}

#confirmButton.active {
  background-color: #FFB300;
  cursor: pointer;
}

/* Buy Tickets - Nationality Section */
.nationality-container {
  margin-top: 40px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.nationality-container .label {
  font-size: 1.1em;
  color: #333;
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.nationality-container .subtext {
  font-size: 0.95em;
  color: #777;
  margin-bottom: 12px;
}
 
.dropdown1 {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  padding: 12px 14px;
  font-size: 1em;
  border: 0px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  cursor: pointer;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,50 70,90 120,50' fill='none' stroke='%23333' stroke-width='20' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;

  transition: all 0.3s ease;
  outline: none;
  box-shadow: none;
}

/* When a value is selected (not the empty one) */
.dropdown1:valid {
  background-color: #FFB300;
  color: white;
  border-color: #FFB300;
  font-weight: bold;
}

/* Optional: focused but not yet selected */
.dropdown1:focus {
  border-color: #FFB300;
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.2);
}

/* Buy Tickets - Admission Ticket Section - Updated Card Style */
   

.admission-title {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 24px;
  text-align: center;
}

.admission-card {
    max-width: 800px;
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
    margin-left: auto;
margin-right: auto;

}

.admission-card.visible {
  display: flex;
}

.admission-image {
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.admission-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admission-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.admission-header h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #222;
}

.ticket-price {
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.1rem;
  white-space: nowrap;
}

.ticket-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
}

.admission-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.quantity-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.quantity-btn:hover {
  background-color: #45a049;
}

.quantity-display {
  font-weight: bold;
  font-size: 1.1rem;
  min-width: 24px;
  text-align: center;
}

.proceed-btn {
  position: fixed;
  right: 120px;
  bottom: 80px; /* Increased space from footer */
  background-color: #43A047;
  color: white;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.3s ease;
}

.proceed-btn:hover {
  background-color: #FFB300; /* Hover yellow */
}

.proceed-container {
  display: flex;
  justify-content: flex-end;
  padding-right: 325px;
}

/* Buy Tickets - Purchase Summary*/
.ticket-summary-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 90%;
  margin: 40px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  gap: 40px;
  flex-wrap: wrap;
  flex: 1;
}
}

/* 左侧整列 */
.tickets-column {
  display: flex;
  flex: 2;
  gap: 24px;
  flex-wrap: wrap;
  min-width: 600px;
}

/* 图片 */
.summary-left-image {
  width: 100%;
  max-width: 360px;
  height: 280px;        /* 固定更高的高度 */
  border-radius: 12px;
  object-fit: cover;    /* 保持比例裁切 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ticket-summary-content {
  flex: 1;
}

.summary-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ticket-box {
  width: 240px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.summary-ticket-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
}

.ticket-info-text {
  margin-top: 8px;
  font-weight: 500;
}

/* 右侧摘要栏 */
.summary-column {
  flex: 1;
  min-width: 260px;
  max-width: 400px;
}


.purchase-summary {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.purchase-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
  color: #444;
}

.summary-row.total {
  border-top: 1px solid #ddd;
  margin-top: 12px;
  padding-top: 10px;
  font-weight: bold;
}

#summarySection {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#summarySection.show {
  display: block;
  opacity: 1;
}

.payment-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
}

.payment-button:hover {
  background-color: #FFB300;
    color:white
}

.payment-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.payment-field,
.payment-field-group {
  margin-bottom: 20px;
}

.payment-field label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
}

.payment-field input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.payment-field input[type="email"] {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.payment-field-group {
  display: flex;
  gap: 20px;
}

.payment-field.half {
  flex: 1;
}

.payment-submit {
  width: 100%;
  padding: 12px;
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.payment-submit:hover {
  background-color: #FFB300;
    color: white
}

  #doneSection h1 {
    font-size: 36px;
    color: #43A047;
    margin-bottom: 20px;
  }

  #doneSection p {
    font-size: 18px;
    color: #555;
  }

.download-button {
  background-color: #FFB300;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}
.download-button:hover {
  background-color: #FF7043;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

/* Buy Tickets.html - Terms and condition*/
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 120px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: white;
  margin: auto;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
  color: black
}

.modal-content h2 {
  text-align: left;
}

.terms-list {
  margin-left: 20px;
  font-size: 15px;
}

.modal-content .highlight {
  margin-top: 20px;
  color: red;
  font-weight: bold;
}


.modal-content button {
  margin: 20px auto 0 auto; /* top: 20px, left/right auto */
  background-color: #43A047;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block; /* Ensure button takes full width for margin auto to work */
}



/* Visit Us.html - Membership*/
.membership-section {
  background-color: #e6f9ec;
  padding: 60px 20px;
  text-align: center;
}

.membership-section h2 {
  font-size: 2.4rem;
  color: #2e8b57;
  margin-bottom: 10px;
}

.brand-name {
  color: #c62828;
  font-weight: bold;
  font-family: 'Arial Black', sans-serif;
  font-style: italic;
}

.tagline {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.membership-details {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.membership-details ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.membership-details li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.joinnow-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.joinnowcta-button {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.joinnowcta-button:hover {
  background-color: #3e9842;
}

.contact-line {
  font-size: 0.9rem;
  margin-top: 20px;
  color: #666;
}

/* Footer */
.footer {
  background-color: #4CAF50; /* Green */
  color: white;
  padding: 40px 20px 10px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 3fr; /* Logo: 1, Columns: 3 */
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.footer-logo-socials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  max-width: 150px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a img {
  width: 28px;
  height: 28px;
}

/* Visit us.html - Volunteer Section */
.volunteer-section {
  background-color: #f2fdf6;
  padding: 60px 20px;
  text-align: center;
}

.volunteer-section h2 {
  font-size: 2.2rem;
  color: #2e8b57;
  margin-bottom: 20px;
}

.volunteer-section p {
  font-size: 1rem;
  color: #444;
  max-width: 750px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.volunteer-details {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.volunteer-details ul {
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
}

.volunteer-details li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.volunteer-qr {
  text-align: center;
  margin: 20px 0;
}

.volunteer-qr img {
  max-width: 200px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Call-to-action button */
.volunteer-btn-wrapper {
  text-align: center;
}

.volunteercta-button {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.volunteercta-button:hover {
  background-color: #388e3c;
}

/* Contact info */
.volunteer-contact {
  margin-top: 30px;
  font-size: 0.95rem;
  color: #555;
}

.volunteer-contact a {
  color: #2e8b57;
  text-decoration: underline;
}

.volunteer-contact a:hover {
  text-decoration: none;
}

/* Visit Us.html - Volunteer-form-container */
.volunteer-form-container {
  margin-top: 30px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.5s ease-in-out;
}

/* Visit Us.html - Donation / Adoption Section */
.donation-section {
  background-color: #fffef6;
  padding: 60px 20px;
  text-align: center;
}

.donation-section h2 {
  font-size: 2.4rem;
  color: #ff7043;
  margin-bottom: 20px;
}

.donation-section p {
  font-size: 1rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* Adoption Packages List */
.adoption-packages {
  background-color: #fefbe8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}


.adoption-packages h3 {
  color: #2e7d32;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.adoption-packages ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1rem;
  color: #333;
    
}

.adoption-packages li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.adoption-packages .note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
}

/* Instructions Text */
.donation-instructions {
  font-size: 1rem;
  color: #444;
  margin: 30px auto;
  max-width: 700px;
  text-align: left;
}

.donation-instructions p {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Donate Button */
.cta-button1 {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  
}

.cta-button1:hover {
  background-color: #388e3c;
}

/* Contact Info */
.donation-contact {
  margin-top: 40px;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

.donation-contact ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0;
}

.donation-contact li {
  margin: 6px 0;
}

.donation-contact a {
  color: #2e8b57;
  text-decoration: underline;
}

.donation-contact a:hover {
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.volunteer-form-container h3 {
  text-align: center;
  color: #2e8b57;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}

.submit-btn {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #3e9842;
}

/* About Us.html - About, Vision & Mission */
.about-section,
.vision-section,
.mission-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
  font-family: 'Roboto', sans-serif;
}

.about-section h2,
.vision-section h2,
.mission-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2a4d2e; /* 深绿色调 */
  text-align: center;
}

.about-section p,
.vision-section p,
.mission-section p,
.mission-section li {
  font-size: 1.1rem;
  color: #333;
}

.mission-section ul {
  list-style-type: disc;
  padding-left: 40px;
}

.about-section {
  background-color: #f2f8f3; /* 淡绿背景 */
}

.vision-section {
  background-color: #f2f8f3; /* 淡蓝背景 */
}

.mission-section {
  background-color: #f2f8f3; /* 淡黄背景 */
}

.about-section h2::before {
  margin-right: 10px;
}

.vision-section h2::before {
  margin-right: 10px;
}

.mission-section h2::before {
  margin-right: 10px;
}

/* Visitor Info.html - Map */
.map-section {
  background-color: #fdfaf4;
  padding: 60px 30px;
  text-align: center;
}

.map-section h2 {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 10px;
}

.map-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
}

.map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.get-directions-link {
  display: inline-block;
  background-color: #FFB300;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.get-directions-link:hover {
  background-color: #f39c12;
}

/* Visitor Info.html - Getting to hotel*/
.getting-here-section,
.nearby-hotels {
  background-color: #f8f9fa;
  padding: 40px 20px;
  margin: 40px auto;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.getting-here-section h2,
.nearby-hotels h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 10px;
}

.transport-box {
  background-color: #ffffff;
  border-left: 5px solid #43a047;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.transport-box h3 {
  font-size: 20px;
  color: #ff7043;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.transport-box ul,
.transport-box p {
  margin: 0;
  padding-left: 20px;
  color: #333;
  font-size: 16px;
}

.nearby-hotels a {
  color: #007bff;
  text-decoration: underline;
}

.nearby-hotels a:hover {
  color: #0056b3;
}

/* Attractions.html - Interactive Map */
.map-section h2 {
  font-size: 2.4rem;
  color: #2e8b57;
  margin-bottom: 30px;
}

/* Attractions.html - Interactive Map */
.map-section {
  position: relative;
  padding: 120px;
  background-color: #f0f8f0;
  text-align: center;
}
.zoo-map-container {
  position: relative;
}
.zoo-map {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Hotspots */
.hotspot {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFB300;
  opacity: 0.6;
  border: 2px solid white;
  cursor: pointer;
  z-index: 5;
}

/* Hotspot Positions (adjust freely) */
.hotspot.monkey    { top: 17%; left: 29%; }
.hotspot.rhino     { top: 45%; left: 48%; }
.hotspot.lion      { top: 55%; left: 30%; }
.hotspot.elephant  { top: 45%; left: 28%; }
.hotspot.tapir     { top: 42%; left: 60%; }
.hotspot.snake     { top: 59%; left: 45%; }

/* Card */
.animal-card {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -100%) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  pointer-events: none;
  width: 250px;
  background-color: white;
  border-radius: 12px;
  border: 4px solid white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 999;
  overflow: hidden;
}

/* 显示状态 */
.animal-card.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -100%) scale(1);
  pointer-events: auto;
}

.animal-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.animal-info {
  background-color: rgba(255, 179, 0, 0.85);
  color: white;
  padding: 10px 14px;
  font-size: 0.95rem;
  text-align: right;
  border-radius: 0 0 12px 12px;
}


/* Grid layout for the 4 content columns */
.footer-column {
  width: 23%;
  min-width: 200px;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
  padding-top: 20px;
}

.footer-column h4 {
  font-size: 16px;
  text-align: left;
  color: white;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #FFB300;
  border-radius: 2px;
}

.footer-column a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #FFB300;
  text-decoration: none;
}

.footer-note {
  text-align: center;
  font-size: 13px;
  color: white;
  margin-top: 20px;
}

.footer-note a {
  color: #FFB300;
  text-decoration: none;
}


/* Bottom copyright */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: white;
}


@media (max-width: 480px) {
  /* Footer 样式 */
  .footer {
    background-color: #43A047;
    padding: 30px 15px 15px;
    color: white;
    text-align: center;
  }

  .footer-logo {
    height: 40px;
    margin-bottom: 15px;
  }

  .footer-socials {
    margin-bottom: 20px;
  }

  .footer-socials img {
    width: 26px;
    margin: 0 8px;
  }

  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }

  .footer-column h4 {
    font-size: 15px;
    color: #FFB300;
    margin-bottom: 10px;
  }

  .footer-column a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
  }

  .footer-column a:hover {
    color: #FFB300;
  }

  .footer-note {
    font-size: 12px;
    color: white;
    margin-top: 30px;
    line-height: 1.6;
  }

  .footer-note a {
    color: #FFB300;
  }
}


/* Default: hidden */
.hamburger {
  display: none;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline;
  }
}


/* Hide nav on mobile by default */
@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
  }

    
@media (max-width: 480px) {


  .hamburger {
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
    margin-left: auto;
  }

  .center-nav {
    display: none;
    width: 100%;
    background-color: #5CB85C;
    padding: 10px 0;
  }

  .center-nav.show {
    display: block;
  }

  .center-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .center-nav a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    padding: 10px;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .dropdown-content a {
    padding: 10px;
    background: #f0f0f0;
    color: #FF7043 !important;
  }

  .search-bar {
    display: none;
  }
}


@media (max-width: 480px) {
  .navbar {
    display: flex;
    justify-content: space-between; /* Logo left, hamburger right */
    align-items: center;
    padding: 10px 16px;
  }

  .logo img {
    height: 24px !important; /* Smaller logo on mobile */
  }

  .hamburger {
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: block;
  }

  .search-bar {
    display: none;
  }

  .center-nav {
    display: none;
    width: 100%;
  }

  .center-nav.show {
    display: block;
  }
}

    
/* Responsive */
@media (max-width: 480px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

 .center-nav {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }
    
  .mobile-only {
    display: block;
  }


  .main {
    display: block;
    text-align: center;
  }

  .hero {
    padding-left: 20px;
    justify-content: center;
    text-align: center;
  }

  .hero-overlay {
    padding: 20px;
  }

  .search-container {
    margin-top: 10px;
  }

  .aside-left img,
  .col img {
    width: 100%;
    height: auto;
  }
}

/* Responsive design for smaller screens */
@media (max-width: 480px) {
  .exhibit-cards {
    grid-template-columns: 1fr 1fr; /* Two columns */
  }
}

@media (max-width: 480px) {
  .exhibit-cards {
    grid-template-columns: 1fr; /* One column */
  }
}

/* Responsive design for smaller screens */
@media (max-width: 480px) {
  .ticket-cards {
    grid-template-columns: 1fr 1fr; /* Two columns */
  }


  .announcement {
    flex-direction: column;
    text-align: left;
    padding: 16px;
  }

  .exhibit-cards {
    grid-template-columns: 1fr; /* stack cards vertically */
    gap: 16px;
  }

  .card h3,
  .exhibit-card h3 {
    font-size: 1.2rem;
  }

  .card p,
  .exhibit-card p {
    font-size: 0.9rem;
  }

  .proceed-btn {
    right: 20px;
    bottom: 20px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .form-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .chat-suggestions button {
    font-size: 11px;
    padding: 5px 8px;
  }

  .purchase-btn,
  .learn-more-btn {
    width: 100%; /* full width for better tap targets */
    margin-bottom: 10px;
  }

  .modal-content button {
    width: 100%;
  }

  .announcement-right h3 {
    font-size: 1.4em;
  }

  .announcement-right p {
    font-size: 0.95em;
  }

}
@media (max-width: 480px) {
  .wild-world {
    grid-template-columns: 1fr; /* Stack cards vertically */
    padding: 20px;
    gap: 16px;
    margin: 10px 0;
  }

  .card {
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  }

  .card h3 {
    font-size: 1.2rem;
    margin: 8px 0;
  }

  .card p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .card:hover {
    transform: none; /* Remove animation to avoid flickering */
  }

  .wild-world:has(.card:hover) .card:not(:hover) {
    opacity: 1; /* Avoid dimming on mobile — hover effects aren't common */
  }
}

@media (max-width: 768px) {
  .announcement {
    flex-direction: column;
    align-items: center; /* Center children horizontally */
    text-align: center;   /* Center the text */
  }

  .announcement-left,
  .announcement-right {
    flex: none;
    width: 100%;
    padding: 10px 0;
  }

  .announcement-right h3 {
    font-size: 1.4em;
  }

  .announcement-right p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .ticket-section {
    padding: 15px;
    margin: 30px 0;
  }

  .ticket-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    padding: 0 10px;
  }

  .ticket-cards {
    grid-template-columns: 1fr; /* Stack cards vertically */
    gap: 16px;
  }

  .ticket-card {
    padding: 15px;
  }

  .ticket-card h3 {
    font-size: 1.4rem;
    margin-top: 12px;
  }

  .ticket-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: 8px;
  }

  .ticket-card img {
    height: 160px; /* Reduce image height for mobile */
  }

  .button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .purchase-btn,
  .learn-more-btn {
    font-size: 0.95rem;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .explore-section {
    margin: 30px 0;
    padding: 15px;
  }

  .explore-section h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .zoo-exhibit-description {
    width: 100%; /* Full width on small screens */
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 10px; /* Optional horizontal padding */
  }
}


@media (max-width: 480px) {
  .main {
    flex-direction: column; /* Stack image and text vertically */
    padding: 15px;
    gap: 20px; /* Adds spacing between the stacked sections */
  }

  .aside-left {
    margin-left: 0; /* Remove left margin when stacked */
    width: 100%;
  }

  .aside-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .aside-right {
    width: 100%;
    text-align: center; /* Optional: center the text for better mobile appearance */
  }

  .aside-right h2 {
    font-size: 1.6rem;
  }

  .aside-right p {
    font-size: 1rem;
    line-height: 1.5;
  }
}




@media (max-width: 480px) {
  .hero-overlay {
    top: 50%;
    left: 16px; /* Padding from the left */
    transform: translateY(-50%); /* Vertically center */
    text-align: left;
    width: 90%;
    max-width: 100%;
    padding-right: 16px; /* Padding right for spacing */
  }

  .hero-overlay h1 {
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    padding-right: 8px;
  }

  .hero-overlay p {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    padding-right: 8px;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
    margin-top: 10px;
    margin-left: 0;
    width: auto;
  }

  .hero-background,
  #hero-video {
    height: 100vh; /* Full height on mobile too */
    object-fit: cover;
  }

  .hero::before {
    background-position: center 40%; /* Adjust image focus */
  }
}

@media (max-width: 480px) {
  .volunteer-section,
  .donation-section {
    padding: 40px 16px;
    text-align: center;
  }

  .volunteer-section h2,
  .donation-section h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .volunteer-section p,
  .donation-section p,
  .donation-instructions,
  .donation-instructions p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .volunteer-details,
  .adoption-packages,
  .volunteer-form-container {
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
  }

  .adoption-packages h3 {
    font-size: 1.25rem;
  }

  .adoption-packages ul,
  .volunteer-details ul {
    padding-left: 18px;
    font-size: 0.95rem;
  }

  .cta-button,
  .submit-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
    width: 50%;              /* Keep natural button size */
    display: block;           /* So we can use margin: auto */
    margin: 20px auto 0 auto; /* Center the button horizontally */
    text-align: center;       /* Center text inside */
  }
}

  .volunteer-qr img {
    max-width: 160px;
    margin: 0 auto;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 8px;
  }

  .donation-contact {
    font-size: 0.85rem;
    margin-top: 30px;
  }

  .donation-contact li {
    margin: 4px 0;
  }
}
@media screen and (max-width: 480px) {
    
    
  /* Hero Section 调整对齐与缩放 */
  .hero-overlay {
    top: 55%;
    left: 20px;
    transform: translateY(-50%);
    text-align: left;
    width: calc(100% - 40px); /* 留左右边距 */
    max-width: 100%;
  }

  .hero-overlay h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 0;
    word-break: break-word;
  }

  .hero-overlay p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: fit-content;
    margin-top: 10px;
  }
    
.cta-button,
.cta-button:link,
.cta-button:visited,
.cta-button:hover,
.cta-button:active {
  text-decoration: none;
}

  /* Navbar 通栏并居中菜单 */
  .navbar {
    flex-direction: column;
    padding: 10px;
  }

  .center-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
  }

  .center-nav ul li a {
    font-size: 16px;
    padding: 8px 12px;
  }

  /* Search 调整缩进 */
  .search-bar {
    position: static;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }

  .search-bar input[type="text"] {
    width: 90%;
    font-size: 14px;
    padding: 10px;
  }

  
.hamburger {
  display: none;
}

@media (max-width: 480px) {
  .hamburger {
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
}
/* 默认样式：桌面隐藏 mobile menu 和 hamburger */
@media (max-width: 480px) {


  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .mobile-menu {
    display: none;
    background-color: #5CB85C;
    padding: 20px;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .mobile-menu.show {
    display: block;
  }

  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-menu a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
  }

  .mobile-menu a:hover {
    background-color: #FFB300;
  }

  .hamburger {
    font-size: 24px;
    cursor: pointer;
    color: white;
    margin-left: auto;
    padding-right: 10px;
  }
  .navbar {
    padding: 8px 16px; /* 再紧凑一点 */
  }


 .search-bar {
    display: none;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 24px !important;
  }
}
    @media (max-width: 480px) {
  .about-section,
  .vision-section,
  .mission-section {
    padding: 30px 15px;           /* Smaller padding */
    line-height: 1.6;             /* Slightly tighter line spacing */
  }

  .about-section h2,
  .vision-section h2,
  .mission-section h2 {
    font-size: 1.6rem;            /* Reduce heading size */
    text-align: center;          /* Ensure centered heading */
    margin-bottom: 16px;
  }

  .about-section p,
  .vision-section p,
  .mission-section p,
  .mission-section li {
    font-size: 0.95rem;          /* Smaller paragraph text */
  }

  .mission-section ul {
    padding-left: 20px;          /* Less left indent */
  }
}
@media (max-width: 768px) {
  .map-section,
  .getting-here-section,
  .nearby-hotels,
  .map-section {
    padding: 30px 16px;
  }

  .map-section h2,
  .getting-here-section h2,
  .nearby-hotels h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .map-section p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .get-directions-link {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .transport-box h3 {
    font-size: 1.1rem;
  }

  .transport-box p,
  .transport-box ul {
    font-size: 0.9rem;
    padding-left: 16px;
  }

  .zoo-map {
    width: 100%;
    height: auto;
  }

  .animal-card {
    width: 90%;
    max-width: 280px;
  }

  .animal-card img {
    height: 160px;
  }

  .animal-info {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .hotspot {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 480px) {
  .modal-content {
    width: 90%;
    padding: 20px;
    font-size: 0.95rem;
  }

  .modal-content h2 {
    font-size: 1.3rem;
  }

  .terms-list {
    font-size: 0.9rem;
    margin-left: 16px;
  }

  .modal-content .highlight {
    font-size: 1rem;
    margin-top: 16px;
  }

  .modal-content button {
    width: 100%; /* Full-width button for easier tap */
    font-size: 1rem;
    padding: 12px;
    margin-top: 20px;
  }
}
    @media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .subtext {
    font-size: 1rem;
  }

  .currency-note {
    font-size: 0.85rem;
  }

  .date-card, .more-dates {
    width: 80px;
    padding: 8px;
  }

  .dropdown1 {
    font-size: 0.9em;
    padding: 10px;
  }

  .admission-card {
    flex-direction: column;
    align-items: center;
    padding: 16px;
  }

  .admission-image {
    width: 100%;
    height: auto;
  }

  .admission-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ticket-price {
    font-size: 1rem;
  }

  .admission-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .quantity-btn, .proceed-btn {
    width: 100%;
    font-size: 1rem;
  }

  .proceed-btn {
    right: 16px;
    bottom: 20px;
    padding: 12px;
  }

  .ticket-summary-wrapper {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .summary-left-image {
    height: auto;
    max-height: 200px;
  }

  .ticket-box {
    width: 100%;
  }

  .summary-column {
    max-width: 100%;
  }

  .payment-container {
    padding: 20px;
  }

  .payment-field-group {
    flex-direction: column;
    gap: 10px;
  }

  #doneSection h1 {
    font-size: 28px;
  }

  #doneSection p {
    font-size: 16px;
  }

  .download-button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
}
.proceed-container {
  margin-bottom: 40px;
  text-align: right;
  padding-right: 310px; /* Default padding for desktop */
}

/* For mobile devices, adjust padding */
@media (max-width: 768px) {
  .proceed-container {
    padding-right: 20px; /* Padding for mobile */
  }
}


@media (max-width: 480px) {
  /* Column Section */
  .col {
    width: 100%; /* Full width on mobile */
  }

  /* Form Section */
  .contact-form-section {
    padding: 40px 10px; /* Adjust padding */
  }

  .form-title {
    font-size: 22px; /* Smaller font size for mobile */
  }

  .contact-container {
    flex-direction: column;
    gap: 15px; /* Reduce gap for smaller screens */
    align-items: center; /* Center align the form and map */
    padding: 0 10px; /* Add padding to prevent overflow */
  }

  .contact-form {
    flex: 1 1 100%; /* Full width for contact form */
    padding: 15px; /* Reduce padding */
    max-width: 90%; /* Limit width to 90% of the screen width */
    margin: 0 auto; /* Center the form */
  }

  /* Contact Info and Map */
  .contact-info {
    flex: 1 1 100%; /* Full width */
    max-width: 90%; /* Limit width of the map */
    margin: 0 auto; /* Center the map */
  }

  /* Other Contact Section */
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust grid layout */
  }


  /* Button adjustments */
  .contact-form button {
    padding: 12px 20px; /* Reduce button padding */
    font-size: 14px; /* Adjust font size */
  }

  /* Privacy Section */
  .privacy-note {
    font-size: 12px; /* Smaller font size */
    color: #666;
    margin-top: 40px;
    max-width: 90%; /* Limit width to 90% of screen */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
  }

  .privacy-note a {
    color: #ffb300;
    text-decoration: none;
  }

  .privacy-note a:hover {
    text-decoration: underline;
  }
}






