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

:root {
  --color-teak: #6B4E31;
  --color-teak-light: #8B6B4A;
  --color-gold: #D4AF37;
  --color-sand: #F5F1E7;
  --color-ink: #1A1A1A;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--color-sand);
  color: var(--color-ink);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Playfair Display', serif;
}

/* Custom Utilities for Tailwind */
.text-teak { color: var(--color-teak); }
.bg-teak { background-color: var(--color-teak); }
.text-gold { color: var(--color-gold); }
.bg-gold { background-color: var(--color-gold); }
.bg-sand { background-color: var(--color-sand); }

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Enhancements */
.hero-gradient {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.85));
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary {
  background-color: var(--color-teak);
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: var(--color-teak-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(107, 78, 49, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

/* Micro-animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Custom Accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.faq-answer.active {
  max-height: 500px;
  opacity: 1;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.active {
  transform: rotate(45deg);
}
