@import "tailwindcss";

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* Custom CSS variables for spiritual theme */
:root {
  --color-primary: 139 69 19; /* Saddle Brown - earthy, spiritual */
  --color-secondary: 184 134 11; /* Dark Goldenrod - sacred gold */
  --color-accent: 101 163 13; /* Olive green - nature, peace */
  --color-neutral: 64 64 64; /* Dark gray */
  --color-surface: 248 250 252; /* Slate 50 */
}

/* Base styles */
* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: rgb(64 64 64);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Logo styling */
.logo-main {
  height: 4rem;
  width: auto;
  max-width: 240px;
}

.logo-footer {
  height: 3rem;
  width: auto;
  max-width: 200px;
}

.logo-mobile {
  height: 3rem;
  width: auto;
  max-width: 160px;
}

/* Responsive logo behavior */
@media (max-width: 640px) {
  .logo-main {
    height: 3rem;
    max-width: 180px;
  }
}

/* Modern spiritual gradient */
.hero-gradient {
  background: linear-gradient(135deg, rgb(139 69 19) 0%, rgb(184 134 11) 50%, rgb(101 163 13) 100%);
}

.text-gradient {
  background: linear-gradient(135deg, rgb(139 69 19), rgb(184 134 11));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
}

.glass-effect {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern floating buttons with correct colors */
.floating-whatsapp {
  position: fixed;
  bottom: 120px;
  right: 20px;
  z-index: 1000;
  background: #25D366; /* Official WhatsApp green */
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.floating-call {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 1000;
  background: rgb(139 69 19); /* Primary brown */
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
}

.floating-call:hover,
.floating-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Modern navigation dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgb(241 245 249);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Modern card styles */
.card-hover {
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
}

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

/* Modern button styles with spiritual theme */
.btn-primary {
  background: linear-gradient(135deg, rgb(139 69 19), rgb(184 134 11));
  color: white;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.2);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
  background: white;
  color: rgb(139 69 19);
  border: 2px solid rgb(139 69 19);
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
  background: rgb(139 69 19);
  color: white;
  transform: translateY(-1px);
}

/* Modern navigation styles */
.nav-link {
  color: rgb(71 85 105);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.nav-link:hover {
  color: rgb(139 69 19);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(139 69 19);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}
