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

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Styles from index.html */
body {
  font-family: 'Outfit', sans-serif;
  color: #4A3B32;
  background-color: #FAFAF9;
}

/* Liquid Glass Navbar */
.liquid-nav {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 59, 50, 0.05);
}

.liquid-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px -1px rgba(74, 59, 50, 0.05);
  border-bottom: 1px solid rgba(74, 59, 50, 0.1);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Hover Underline Animation */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #B08D55;
  transition: width 0.3s ease;
}

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

/* Card Hover Effects */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(176, 141, 85, 0.15);
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(74, 59, 50, 0.1);
  border-color: rgba(176, 141, 85, 0.4);
}

/* Text Gradients */
.text-gradient {
  background: linear-gradient(to right, #B08D55, #D4AF37, #B08D55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background-size: 200% auto;
  animation: shine 6s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Fixed Background Utility */
.fixed-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Section Pattern */
.section-pattern {
  background-image: radial-gradient(#B08D55 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  background-color: #F0EBE0;
  /* Champagne */
}