@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

:root {
  --primary-color: #0d3b66;
  --secondary-color: #fa7b5f;
  --accent-color: #3caea3;
  --light-bg: #f5f5f5;
  --text-color: #333;
}

header {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

nav .logo {
  font-size: 1.6rem;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

/* Banner */
.banner {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  /* Use a gradient background instead of an external image */
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero .hero-content {
  position: relative;
  max-width: 600px;
  margin-left: 10%;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero .buttons {
  display: flex;
  gap: 1rem;
}

.hero .buttons a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero .buttons .primary {
  background-color: var(--secondary-color);
  color: white;
}

.hero .buttons .primary:hover {
  background-color: #f9624b;
}

.hero .buttons .secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero .buttons .secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Featured Section */
.featured {
  padding: 4rem 1rem;
  background-color: var(--light-bg);
}

.featured .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

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

.featured .card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card images: ensure destination photos scale nicely within cards */
.featured .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.featured .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.featured .card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.featured .card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.featured .card a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.featured .card a:hover {
  text-decoration: underline;
}

/* Events Section */
.events {
  padding: 4rem 1rem;
}

.events .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.events .event-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.event {
  display: flex;
  gap: 1rem;
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  align-items: center;
}

.event .date-box {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-align: center;
}

.event .date-box .day {
  font-size: 1.5rem;
  font-weight: 700;
}

.event .date-box .month {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
}

.event-details h4 {
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.event-details p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.event-details .join {
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: none;
}

.event-details .join:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta a {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta a:hover {
  background-color: #f9624b;
}

/* Contact Section */
.contact {
  padding: 4rem 1rem;
  background-color: var(--light-bg);
}

.contact .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.contact form input,
.contact form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}

.contact form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 150px;
}

.contact form button {
  grid-column: 1 / -1;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact form button:hover {
  background-color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.85rem;
}

footer a {
  color: var(--secondary-color);
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #222;
  color: #eee;
  padding: 1rem;
  text-align: center;
  z-index: 2000;
}

.cookie-banner p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cookie-banner button {
  padding: 0.5rem 1rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}