
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #faf8f4;
  color: #222;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.narrow {
  max-width: 750px;
  margin: auto;
  text-align: center;
}

header.glass {
  position: fixed;
  width: 100%;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.8);
  z-index: 1000;
  padding: 18px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

nav a:hover {
  color: #b89b6a;
}

.hero {
  height: 100vh;
  background: #000 url('../images/hero.jpg') center/cover fixed;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
}

.section {
  padding: 140px 0;
}

.light {
  background: #f3f1ec;
}

.dark {
  background: #111;
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.card {
  padding: 50px;
  background: white;
  border: 1px solid #eee;
  text-align: center;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.btn-gold {
  display: inline-block;
  padding: 16px 34px;
  background: #b89b6a;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #a8844f;
}

.btn-outline {
  display: inline-block;
  padding: 16px 34px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: white;
  color: #000;
}

footer {
  text-align: center;
  padding: 50px 0;
  background: #000;
  color: #888;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  padding: 14px 24px;
  border-radius: 50px;
  z-index: 2000;
}

.whatsapp-float a {
  color: white;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
