/* LuxeNest custom styles */

:root {
  --background: #FAF7F2;
  --foreground: #2F2F2F;
  --primary: #B08968;
  --primary-foreground: #FAF7F2;
  --secondary: #D4A373;
  --muted: #EDE5DA;
  --muted-foreground: #6B6760;
  --accent: #EDE0D4;
  --border: #E2D8C9;
  --gradient-warm: linear-gradient(135deg, #EDE0D4 0%, #FAF7F2 100%);
  --gradient-primary: linear-gradient(135deg, #B08968 0%, #D4A373 100%);
  --gradient-hero: linear-gradient(120deg, rgba(250, 247, 242, 0.85) 0%, rgba(237, 224, 212, 0.55) 50%, transparent 100%);
  --shadow-soft: 0 10px 40px -12px rgba(80, 55, 30, 0.18);
  --shadow-luxe: 0 25px 60px -20px rgba(80, 55, 30, 0.25);
  --shadow-lift: 0 30px 80px -25px rgba(80, 55, 30, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
  margin: 0;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.container-luxe {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-luxe {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-luxe {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width:768px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .025em;
  transition: all .5s cubic-bezier(.22, 1, .36, 1);
  box-shadow: var(--shadow-soft);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-luxe);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .025em;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  transition: all .5s cubic-bezier(.22, 1, .36, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.card-luxury {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  transition: all .5s cubic-bezier(.22, 1, .36, 1);
  box-shadow: var(--shadow-soft);
}

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

.glass-navbar {
  background: rgba(250, 247, 242, .7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 216, 201, .5);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .75rem;
  font-weight: 500;
  color: var(--primary);
}

.text-display {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.05;
}

.bg-gradient-warm {
  background: var(--gradient-warm);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.text-primary-c {
  color: var(--primary);
}

.text-secondary-c {
  color: var(--secondary);
}

.text-muted-c {
  color: var(--muted-foreground);
}

.bg-muted-c {
  background: var(--muted);
}

.bg-accent-c {
  background: var(--accent);
}

.border-c {
  border-color: var(--border);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.animate-fade-up {
  animation: fade-up .9s cubic-bezier(.22, 1, .36, 1) both;
}

.animate-fade-in {
  animation: fade-in 1.2s ease-out both;
}

.animate-scale-in {
  animation: scale-in .8s cubic-bezier(.22, 1, .36, 1) both;
}

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

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

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

/* Masonry for gallery */
.masonry {
  column-count: 1;
  column-gap: 1rem;
}

@media (min-width: 640px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .masonry {
    column-count: 3;
  }
}

.masonry>* {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.home-hero-text {
  background-color: antiquewhite;
  padding: 20px;
  border-radius: 30px 40px 50px 60px;
  opacity: 0.8;
}

.active {
  color: #b48b6a;
  font-size: medium;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

html {
  font-family: "Poppins", sans-serif;
}

body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family:
    "Playfair Display",
    Georgia,
    "Times New Roman",
    serif;
}
/* smooth modal transitions */
.lightbox-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-image {
  transform: scale(1);
}

body.lightbox-open {
  overflow: hidden;
}