/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f4e2; /* soft cream */
  color: #1a1a1a;
  line-height: 1.6;
}

/* HEADER (Home Page) */
.site-header {
  text-align: center;
  padding: 40px 20px;
  background-color: #1b5e20; /* Australian green */
  color: #f4f4e2;
}

.tagline {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #f9a825; /* gold accent */
}

/* HERO (Home Page) */
.hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
}

.home-hero {
  background-image: url("./assets/map.jpg");
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 94, 32, 0.55); /* green tint */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f4f4e2;
  max-width: 600px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #f9a825; /* gold */
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s ease;
}

.cta-button:hover {
  background-color: #1b5e20;
  color: #f4f4e2;
}

/* SECONDARY BUTTON */
.secondary-button {
  margin-left: 10px;
  background-color: #1b5e20;
  color: #f4f4e2;
}

.secondary-button:hover {
  background-color: #145016;
}

.tertiary-button {
  margin-left: 10px;
  color: #1a1a1a;
  background-color: #f9a825;
}

.tertiary-button:hover {
  background-color: #1b5e20;
}

/* INTRO */
.intro {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.intro h2 {
  margin-bottom: 20px;
}

/* DESTINATIONS GRID */
.destinations {
  padding: 50px 20px;
  background-color: #ffffff;
}

.destinations h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.destination-card {
  background-color: #f4f4e2;
  border: 2px solid #f9a825;
  border-radius: 8px;
  padding-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.image-placeholder {
  height: 180px;
  background-color: #dde7da;
  background-size: cover;
  background-position: center;
}

/* DESTINATION IMAGES */
.big-lobster {
  background-image: url("./assets/lobster.png");
}
.big-merino {
  background-image: url("./assets/marino.jpg");
}
.big-banana {
  background-image: url("./assets/banana.png");
}
.big-prawn {
  background-image: url("./assets/prawn.png");
}
.big-pineapple {
  background-image: url("./assets/pineapple.png");
}
.big-cow {
  background-image: url("./assets/cow.png");
}
.giant-ram {
  background-image: url("./assets/ram.png");
}

.destination-card h3 {
  padding: 15px;
  font-size: 1.3rem;
}

.destination-card p {
  padding: 0 15px 15px 15px;
}

.learn-more {
  display: inline-block;
  margin-left: 15px;
  padding: 8px 14px;
  background-color: #1b5e20;
  color: #f4f4e2;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s ease;
}

.learn-more:hover {
  background-color: #145016;
}

/* FOOTER */
.site-footer,
.page-footer {
  text-align: center;
  padding: 20px;
  background-color: #1b5e20;
  color: #f4f4e2;
  margin-top: 40px;
}

/* PAGE HEADERS (Subpages) */
.page-header {
  text-align: center;
  padding: 40px 20px;
  background-color: #1b5e20;
  color: #f4f4e2;
}

.subtitle {
  margin-top: 10px;
  color: #f9a825;
}

/* HERO (Subpages) */
.hero {
  position: relative;
  height: 50vh;
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.content {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #1b5e20;
}

.activity-list {
  margin: 15px 0 30px 20px;
}

.activity-list li {
  margin-bottom: 8px;
}

/* BACK BUTTON */
.back-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background-color: #f9a825;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s ease;
}

.back-button:hover {
  background-color: #1b5e20;
  color: #f4f4e2;
}

/* HERO IMAGES FOR SUBPAGES */
.merino-hero {
  background-image: url("./assets/marino.jpg");
}
.lobster-hero {
  background-image: url("./assets/lobster.png");
}
.prawn-hero {
  background-image: url("./assets/prawn.png");
}
.pineapple-hero {
  background-image: url("./assets/pineapple.png");
}
.cow-hero {
  background-image: url("./assets/cow.png");
}
.banana-hero {
  background-image: url("./assets/banana.png");
}
.ram-hero {
  background-image: url("./assets/ram.png");
}
.playlist-hero {
  background-image: url("./assets/music.jpeg");
}
.packing-hero {
  background-image: url("./assets/packing.jpg");
}

.loop-hero {
  background-image: url("./assets/loop.jpeg");
  background-size: cover;
  background-position: center;
}
