/* style.css - Premium Shubhalagnam Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary-ivory: #FFF9F2;
  --primary-maroon: #6D1F1F;
  --accent-saffron: #D97706;
  --accent-gold: #D4AF37;
  --soft-beige: #F5E9DA;
  --text-dark: #1E1E1E;
  --text-muted: #666666;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.08);

  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--primary-ivory);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  color: var(--primary-maroon);
}

/* Ensure headings inside text-white containers or footers are visible */
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white .font-heading {
  color: #ffffff !important;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
  color: #ffffff;
}

footer .text-saffron {
  color: var(--accent-saffron) !important;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Glassmorphism & Navbar */
.navbar {
  transition: all 0.4s ease;
  padding: 20px 0;
}

.glass-nav {
  background: rgba(255, 249, 242, 0.9) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  padding: 12px 0;
}

.glass-nav .nav-link {
  color: var(--text-dark) !important;
}

.glass-nav .navbar-brand {
  color: var(--primary-maroon) !important;
}

.glass-nav .navbar-toggler-icon {
  filter: invert(1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-maroon);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background-color: #521616;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(109, 31, 31, 0.25);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-maroon);
  border: 1px solid var(--primary-maroon);
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background-color: var(--primary-maroon);
  color: #fff;
}

/* Utilities */
.text-maroon {
  color: var(--primary-maroon) !important;
}

.text-saffron {
  color: var(--accent-saffron) !important;
}

.text-gold {
  color: var(--accent-gold) !important;
}

.bg-maroon {
  background-color: var(--primary-maroon) !important;
}

.bg-ivory {
  background-color: var(--primary-ivory) !important;
}

.bg-beige {
  background-color: var(--soft-beige) !important;
}

.bg-saffron {
  background-color: var(--accent-saffron) !important;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

/* Sections */
section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-saffron);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 20px auto 0;
  font-size: 1.1rem;
}

/* Animations & Hover */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.15);
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Custom Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

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

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

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

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

@keyframes patternPan {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 120px 120px;
  }
}

.bg-pan-anim {
  animation: patternPan 30s linear infinite;
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Hero Overlay */
.hero-overlay {
  position: relative;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Cards */
.card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #fff;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.card-img-top {
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  object-fit: cover;
}

.badge-premium {
  background-color: var(--primary-ivory);
  color: var(--primary-maroon);
  border: 1px solid var(--accent-gold);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Form Controls */
.form-control,
.form-select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-saffron);
  box-shadow: 0 0 0 0.25rem rgba(217, 119, 6, 0.15);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .floating-wa {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 80px;
  }

  .mobile-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.bg-maroon p,
.bg-dark p,
.breadcrumb p {
  color: white !important;
}

footer a {
  color: white !important;
}