:root {
  --accent-color: #d8a39d;
  --neutral-light: #fdfaf6;
  --neutral-dark: #a1866f;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--neutral-light);
  color: #444;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff7f1;
  border-bottom: 1px solid #eee;
}

.logo {
  height: 50px;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #555;
  font-weight: 600;
}

.hero {
  background-color: #fff3ec;
  padding: 60px 20px;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 12px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 15px;
  color: #222;
}

.cta {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  background: #fff3ec;
}

footer p {
  margin: 4px 0;
}

/* Logo and Nav Update */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: var(--neutral-light);
}

.logo {
  height: 60px;
  width: auto;
}

/* Navigation horizontal alignment */
nav {
  display: flex;
  gap: 24px;
}

nav a {
  margin: 0;
  text-decoration: none;
  color: #555;
  font-weight: 600;
}

/* Hero Section Background Fix */
.hero {
  background-image: url('../images/Background Image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.hero-content {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: #222;
}
.hero-text {
  background-color: rgba(255, 255, 255, 0.7); /* White with transparency */
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  max-width: 90%;
  text-align: center;
}

