/* Oasis Palm - TailwindCSS-Based Design (Reference Match) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* CSS Variables - Exact from Reference */
:root {
  --background: 220 30% 6%;
  --foreground: 45 30% 96%;
  --card: 220 25% 10%;
  --card-foreground: 45 30% 96%;
  --primary: 43 56% 58%;
  --primary-foreground: 220 30% 6%;
  --secondary: 220 30% 15%;
  --secondary-foreground: 45 30% 96%;
  --muted: 220 20% 18%;
  --muted-foreground: 220 15% 60%;
  --accent: 187 100% 50%;
  --accent-foreground: 220 30% 6%;
  --border: 220 20% 18%;
  --input: 220 20% 18%;
  --ring: 43 56% 58%;
  --radius: 0.5rem;

  /* Gold variants */
  --gold: 43 56% 58%;
  --gold-light: 43 70% 70%;
  --gold-dark: 43 50% 45%;

  /* Other */
  --navy: 220 30% 6%;
  --cyan-glow: 187 100% 50%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Container */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1400px;
}

/* Glass Card Effect */
.glass-card {
  background: linear-gradient(145deg, rgba(23, 28, 38, 0.8), rgba(14, 18, 27, 0.9));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Text Gradient */
.text-gradient-gold {
  background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-light)), hsl(var(--gold)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

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

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

/* Utility Classes */
.text-gold {
  color: hsl(var(--gold));
}

.text-cyan {
  color: hsl(var(--cyan-glow));
}

.text-white {
  color: hsl(var(--foreground));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  font-size: 0.875rem;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-light)));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px hsl(var(--gold) / 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--gold));
  color: hsl(var(--gold));
}

.btn-outline:hover {
  background: hsl(var(--gold) / 0.1);
  color: hsl(var(--gold-light));
}

/* Blinking/Pulsing Book Now Button */
.btn-blink {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 5px hsl(var(--gold) / 0.4), 0 0 10px hsl(var(--gold) / 0.3);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 20px hsl(var(--gold) / 0.8), 0 0 40px hsl(var(--gold) / 0.5), 0 0 60px hsl(var(--gold) / 0.3);
    transform: scale(1.05);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  text-decoration: none;
  letter-spacing: 1px;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.navbar-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  font-weight: 500;
}

.navbar-link:hover,
.navbar-link.active {
  color: hsl(var(--gold));
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  font-size: 1.5rem;
  cursor: pointer;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      hsl(var(--background) / 0.3),
      hsl(var(--background) / 0.6),
      hsl(var(--background) / 0.9));
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  z-index: 1;
}

.hero-subtitle {
  color: hsl(var(--gold));
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: hsl(var(--background));
}

.section-gradient {
  background: linear-gradient(180deg, hsl(var(--background)), hsl(var(--card)));
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: hsl(var(--gold));
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 40, 0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: hsl(var(--foreground));
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.gallery-category {
  color: hsl(var(--gold));
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Forms */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: hsl(var(--muted) / 0.3);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  background: hsl(var(--muted) / 0.5);
  border-color: hsl(var(--gold));
  box-shadow: 0 0 15px hsl(var(--gold) / 0.2);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: hsl(var(--gold));
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  background: hsl(var(--card));
  padding: 4rem 0 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: hsl(var(--gold));
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: hsl(var(--gold));
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--muted) / 0.3);
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: hsl(var(--gold));
  color: hsl(var(--primary-foreground));
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.3);
  color: hsl(var(--muted-foreground));
}

/* Animations */
@keyframes float {

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

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

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

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 900px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: hsl(var(--background) / 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid hsl(var(--border) / 0.5);
    z-index: 999;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu li {
    margin-bottom: 1.5rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.8rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .glass-card {
    padding: 1rem;
  }

  .section {
    padding: 3rem 0;
  }
}