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

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.6;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 800px;
  padding: 20px;
  animation: fadeUp 1.2s ease;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  letter-spacing: 1px;
}

.tagline {
  margin-top: 10px;
  font-style: italic;
  opacity: 0.9;
}

.hero h2 {
  margin-top: 30px;
  font-size: 1.8rem;
}

.subtext {
  margin: 15px 0 30px;
  font-size: 1rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.primary {
  background: #d4af37;
  color: #000;
}

.primary:hover {
  background: #c29d2e;
}

.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.secondary:hover {
  background: #fff;
  color: #000;
}

/* INFO SECTION */
.info {
  padding: 70px 20px;
  background: #f8f8f8;
}

.container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.info-box {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-box i {
  font-size: 26px;
  color: #d4af37;
  margin-bottom: 15px;
}

.info-box h3 {
  margin-bottom: 10px;
}

.directions {
  display: inline-block;
  margin-top: 10px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}

/* SOCIAL */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #333;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #d4af37;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 15px;
  font-size: 0.85rem;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
