@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Brand Colors - Natural & Warm */
  --bg-dark: #2E2926;      /* Warm dark grey/brown */
  --bg-light: #FAF5F0;     /* Warm Ivory */
  --bg-card: #3D3733;      /* Slightly lighter than dark background for depth */
  --magenta: #C8005A;
  --gold: #C9A84C;
  --text-dark-theme: #FAF5F0;
  --text-light-theme: #2E2926;

  /* Typography */
  --font-headline: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  
  /* Styling */
  --radius-large: 24px;
  --radius-small: 12px;
  --shadow-soft: 0 15px 40px rgba(0,0,0,0.15);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-dark-theme);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-light {
  background-color: var(--bg-light);
  color: var(--text-light-theme);
}

/* Header & Nav */
header {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: var(--magenta);
}

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

nav a {
  font-weight: 400;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

nav a:hover, nav a.highlight {
  color: var(--gold);
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--magenta);
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px; /* Pill shape for organic feel */
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--magenta);
  box-shadow: 0 10px 20px rgba(200, 0, 90, 0.2);
}

.btn:hover {
  background-color: transparent;
  color: var(--magenta);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(200, 0, 90, 0.3);
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 8rem;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Organic blob shape */
  box-shadow: var(--shadow-soft);
  transition: all 0.5s ease;
}

.hero-image img:hover {
  border-radius: 50%;
  transform: scale(1.02);
}

/* SVG Waves */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.wave-fill-light {
  fill: var(--bg-light);
}
.wave-fill-dark {
  fill: var(--bg-dark);
}

/* Offer Cards */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.offer-card {
  background-color: var(--bg-card);
  color: var(--text-dark-theme);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--magenta));
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.offer-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.offer-format {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.7;
}

/* Footer */
footer {
  padding: 4rem 0 2rem;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.6;
}

/* Utilities */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.highlight { color: var(--magenta) !important; }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  header {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-split {
    flex-direction: column-reverse;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-image img {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .section {
    padding: 4rem 0;
  }
}
