body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #fdfdfb;
  color: #333;
}

/* Header */
header {
  background-color: #2B2B2B;
  color: #fff;
  padding: 2rem 1rem;
}
header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin: 0;
}
.tagline {
  font-style: italic;
  margin: 5px 0 15px;
}
nav a {
  color: #f9d342;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
}
nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background-color: #f6f6f6;
}
.hero-text {
  flex: 1 1 45%;
}
.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2B2B2B;
}
.hero-text p {
  margin-top: 15px;
  margin-bottom: 25px;
}
.hero-image img {
  width: 350px;
  border-radius: 8px;
}
.btn {
  background-color: #f9d342;
  color: #2B2B2B;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}
@media (max-width: 768px) {
  button, .btn, .cta-button {
    margin-bottom: 2rem;
  }
}
.btn:hover {
  background-color: #2B2B2B;
  color: #fff;
}

/* About */
.about {
  padding: 80px 10%;
  background-color: #fff;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.about-image img {
  width: 300px;
  border-radius: 12px;
}
.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2B2B2B;
}
.about-text ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.about-text li {
  margin-bottom: 8px;
}

/* Call to Action */
.cta {
  background-color: #f9d342;
  color: #2B2B2B;
  text-align: center;
  padding: 60px 20px;
}
.cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #2B2B2B;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
/* --- NAVIGATION FIX --- */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center; /* centers the items horizontally */
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Highlight on hover */
nav ul li a:hover {
  color: #d4af37; /* muted gold hover */
}

/* Contact button */
.btn-contact {
  background-color: #ffd700; /* bright gold */
  color: #2b2b2b;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 600;
}

.btn-contact:hover {
  background-color: #d4af37; /* muted gold hover */
  color: #fff;
}
/* --- STICKY HEADER --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000; /* keeps it above other content */
  background-color: #2b2b2b; /* matches your charcoal theme */
  padding: 2rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* subtle shadow for depth */
}
/* Extra spacing just for homepage header */
.home-header {
  padding: 3rem 1rem 2.5rem;
}

.home-header .tagline {
  margin-top: 0.8rem;
}

