@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --primary: #003366;
  --text: #111;
  --accent: #007aff; /* iOS blue */
  --bg: #f2f4f8;
  --card-bg: #fff;
  --shadow: 0 8px 30px rgba(0,0,0,0.05);
  --border: #eaeaea;
}

body {
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
}

header {
  background: white;
  padding: 60px 20px 30px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.card h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: var(--primary);
}

.card p {
  margin-bottom: 10px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.map-embed iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.whatsapp-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 20px;
}

.whatsapp-button:hover {
  background: #0062d6;
}

footer {
  text-align: center;
  color: #666;
  padding: 50px 20px;
  font-size: 0.9rem;
}
/* Fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* Delayed animation per card */
.card:nth-of-type(2) { animation-delay: 0.4s; }
.card:nth-of-type(3) { animation-delay: 0.6s; }

/* Smooth hover transitions */
.whatsapp-button,
a,
.card {
  transition: all 0.3s ease;
}

/* Floating WhatsApp button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  font-size: 20px;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-decoration: none;
  z-index: 999;
  display: none;
}

.floating-whatsapp:hover {
  background-color: #1ebe55;
}

/* Show only on small screens */
@media (max-width: 768px) {
  .floating-whatsapp {
    display: inline-block;
  }
}
