/* BundeliVivaah.com - Custom Styles */

:root {
  --brand-primary: #e91e63;
  --brand-secondary: #ad1457;
  --brand-accent: #fce4ec;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #0f172a;
  background-color: #f8fafc;
}

/* Hero Section with Dark Overlay */
.hero-section {
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 10;
}

.card-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
  color: #475569;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--brand-primary);
}

.btn-primary {
  background-color: var(--brand-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--brand-secondary);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-outline {
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--brand-primary);
  color: white;
}

.btn-outline:active {
  transform: scale(0.95);
}

section {
  padding: 4rem 1rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: all 0.2s;
  background-color: #fff;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
  border-color: var(--brand-primary);
}

.profile-card {
  background-color: white;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.profile-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: white;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

.whatsapp-tooltip {
  position: absolute;
  right: 5rem;
  background: #333;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}
