@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --primary: #0f172a;
  /* Navy */
  --secondary: #64748b;
  /* Slate */
  --accent: #eab308;
  /* Gold/Yellow */
  --bg-sand: #f8fafc;
  /* Light Slate/White */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-sand);
  color: var(--primary);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lora', serif;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 50;
}

/* Ensure header backgrounds stay behind navigation */
header.relative {
  z-index: 0;
}

header.relative>.absolute {
  z-index: 1;
}

header.relative>.relative {
  z-index: 10;
}

.hero-gradient {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.1));
}

.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);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.booking-form-input {
  transition: all 0.3s ease;
}

.booking-form-input:focus {
  transform: scale(1.01);
}

/* Hide old scroll top button if exists */
#scrollTop,
.scroll-top,
.back-to-top,
#backToTop {
  display: none !important;
}

/* ===== Premium Glass Footer Social Icons ===== */

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin-right: 20px;
  border-radius: 50%;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #ffffff;
  font-size: 22px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

  transition: all 0.35s ease;
}

.social-icon-link:last-child {
  margin-right: 0;
}

/* Hover Effect */
.social-icon-link:hover {
  background: rgba(255, 215, 0, 0.25);
  border-color: #FFD700;
  color: #FFD700;
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 12px 28px rgba(255, 215, 0, 0.35);
}


/* New Glass Buttons */
/* .glass-btn {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;
  border-radius: 40px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #ffffff;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);

  transition: all 0.35s ease;
} */

/* Shine */
/* .glass-btn::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent 40%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 60%);
  transform: rotate(25deg);
  transition: 0.8s;
}

.glass-btn:hover::before {
  top: 100%;
  left: 100%;
}

.glass-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 215, 0, 0.25);
  border-color: #FFD700;
}