/* styles.css — fully rewritten for a clean, modern aesthetic */

/* ==== Variables & Resets ==== */
:root {
  --deep-maroon: #40030E;
  --rose: #A6294B;
  --sage: #BFBDA3;
  --sunset: #F2A444;
  --tangerine: #F26430;
  --text: #222222;
  --bg: #FFFFFF;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--rose);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--deep-maroon);
}

.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

/* ==== Navigation ==== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.site-header h1 {
  font-size: 1.5rem;
  color: #fff;
}
.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.site-header nav a {
  color: #fff;
  font-weight: 500;
}
.site-header nav a:hover {
  color: var(--tangerine);
}

/* ==== Hero Banner ==== */
.hero-banner {
  position: relative;
  background: url("images/hero-background-1600x900.jpg") center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem; /* offset for fixed header */
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
  max-width: 800px;
}
.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  background-color: var(--tangerine);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn:hover {
  background-color: var(--sunset);
}

/* ==== Guide Section ==== */
.guide-section {
  padding: 4rem 0;
}
.guide-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--deep-maroon);
  margin-bottom: 2rem;
}
.guide-section .guide-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.guide-card {
  background-color: #fafafa;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.guide-card h3 {
  color: var(--rose);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.guide-card ul {
  list-style: disc inside;
  margin-bottom: 1rem;
}
.guide-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ==== Contact Section ==== */
.contact-section {
  padding: 3rem 0;
  background-color: var(--sage);
}
.contact-section h2 {
  text-align: center;
  font-size: 1.75rem;
  color: var(--deep-maroon);
  margin-bottom: 1.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact-details address {
  font-style: normal;
  line-height: 1.5;
  color: #333;
  text-align: center;
}
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.links a {
  background: #fff;
  border: 1px solid var(--rose);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.links a:hover {
  background: var(--sunset);
  color: #fff;
  border-color: var(--sunset);
}

/* ==== Footer ==== */
.site-footer {
  background-color: var(--deep-maroon);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}
