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

:root {
  --primary-color: #8b3a3a; /* Earthy Red / Maroon */
  --secondary-color: #f7ede2; /* Warm Beige */
  --accent-color: #d4a373; /* Muted Gold */
  --text-dark: #333333;
  --text-light: #ffffff;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header / Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: 
    linear-gradient(rgba(247, 237, 226, 0.9), rgba(247, 237, 226, 0.9)),
    url('https://images.unsplash.com/photo-1583391733959-b5eb29d0f3eb?auto=format&fit=crop&q=80') center/cover;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  animation: fadeInDown 1.2s ease-out;
}

.subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

.coming-soon {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 3rem;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

/* Instagram Section */
.instagram-cta {
  background: white;
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  border: 1px solid rgba(212, 163, 115, 0.2);
  animation: fadeIn 1.5s ease-out 0.9s both;
  transition: transform 0.3s ease;
}

.instagram-cta:hover {
  transform: translateY(-5px);
}

.instagram-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.ig-btn:hover {
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
  transform: scale(1.05);
}

/* Map Section */
.map-section {
  padding: 4rem 2rem;
  background-color: white;
  text-align: center;
}

.map-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: var(--secondary-color);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--text-dark);
  color: white;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .brand-name { font-size: 3.5rem; }
  .coming-soon { font-size: 2rem; }
  .instagram-cta { padding: 1.5rem; width: 90%; }
}
