@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --peacock:       #7c4dac;
  --peacock-dark:  #5e3690;
  --peacock-light: rgba(124,77,172,0.12);
  --lilac:         #e4d9f7;
  --lilac-dark:    #cbb8ee;
  --sunset:        #e58aa0;
  --sunset-deep:   #d96f8c;
  --card-bg:       rgba(255,255,255,0.72);
  --text:          #2D1B4E;
  --text-light:    #5f4d82;
  --moon:          #f6ecd6;
  --shadow-sm:     0 2px 8px rgba(45,27,78,0.07);
  --shadow-md:     0 4px 20px rgba(45,27,78,0.11);
  --shadow-lg:     0 10px 40px rgba(45,27,78,0.18);
  --transition:    cubic-bezier(0.4,0,0.2,1);
  --radius:        16px;
  --bg:            #efe9fb;
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lato', sans-serif;
  background: linear-gradient(180deg,#efe9fb 0%,#ece2f6 40%,#f3e2f0 75%,#f8e7e2 100%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text); line-height: 1.25; }
a { color: var(--peacock); text-decoration: none; }
a:hover { color: var(--peacock-dark); }
img { max-width: 100%; height: auto; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  background: rgba(46,27,78,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.site-nav .brand {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.site-nav .brand-sub {
  font-size: 0.78rem;
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 0;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--transition);
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: white; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .site-nav { padding: 0 1.25rem; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(40,24,68,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a::after { display: none; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(rgba(20,10,40,0.45), rgba(20,10,40,0.35)), url('/uploads/bkground.jpg') center center / cover no-repeat;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}


.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: floatBlob 9s ease-in-out infinite;
}
.hero-blob:nth-child(1) { width: 420px; height: 420px; background: rgba(232,168,126,0.18); top: -120px; left: -80px; animation-delay: 0s; }
.hero-blob:nth-child(2) { width: 320px; height: 320px; background: rgba(232,138,160,0.16); bottom: -80px; right: -60px; animation-delay: -3.5s; }
.hero-blob:nth-child(3) { width: 200px; height: 200px; background: rgba(216,201,240,0.20); top: 35%; left: 8%; animation-delay: -6s; }
.hero-blob:nth-child(4) { width: 260px; height: 260px; background: rgba(246,236,214,0.15); bottom: 15%; right: 12%; animation-delay: -2s; }

@keyframes floatBlob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.06); }
}

.hero .tagline-badge,
.hero h1,
.hero > p,
.hero-buttons,
#scroll-chevron { position: relative; z-index: 2; }

.hero-mountains {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero .tagline-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.92);
  padding: 0.4rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: white;
  line-height: 1.12;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.hero h1 em { color: #f3d9c4; font-style: italic; }

.hero > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-top: 1.25rem;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons inside hero get glass secondary style */
.hero .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: white !important;
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.hero .btn-secondary:hover {
  background: white;
  color: var(--peacock) !important;
  border-color: white;
}

/* Scroll chevron */
.scroll-chevron, #scroll-chevron {
  position: absolute;
  bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  animation: bounceDown 2.2s ease-in-out infinite;
  transition: opacity 0.4s;
  user-select: none;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* Wave divider */
.wave-divider { display: block; line-height: 0; overflow: hidden; margin-top: -2px; }
.wave-divider svg { display: block; width: 100%; }

/* Gallery teaser strip */
.gallery-teaser {
  background: var(--peacock);
  padding: 3.5rem 2rem;
  text-align: center;
}
.gallery-teaser h2 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}
.gallery-teaser p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.teaser-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.teaser-images img {
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.35s var(--transition);
}
.teaser-images img:hover { transform: scale(1.04); }

/* About strip */
.about-strip {
  background: var(--lilac-dark);
  padding: 3.5rem 2rem;
  text-align: center;
}
.about-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}
.about-strip p {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cc4 0%, #d96f8c 100%);
  color: white !important;
  padding: 0.8rem 2.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(124,77,172,0.4);
  transition: box-shadow 0.3s var(--transition), transform 0.2s var(--transition), filter 0.2s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-15deg);
  transition: left 0.55s ease;
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(217,111,140,0.45);
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: white !important;
}
.btn-primary:hover::after { left: 160%; }

.btn-secondary {
  display: inline-block;
  background: white;
  color: var(--peacock) !important;
  border: 2px solid var(--peacock);
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--peacock);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,123,167,0.3);
}

.btn-danger {
  background: #dc2626; color: white; border: none;
  padding: 0.4rem 1rem; border-radius: 6px;
  cursor: pointer; font-size: 0.85rem;
  transition: background 0.2s;
}
.btn-danger:hover { background: #b91c1c; }
.btn-sm { padding: 0.35rem 0.9rem !important; font-size: 0.82rem !important; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition), border-color 0.3s;
  border: 1px solid rgba(255,255,255,0.55);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lilac-dark);
}
.card-body { padding: 1.25rem; }
.card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.card:hover img { transform: scale(1.07); }

/* =============================================
   GRIDS
   ============================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* =============================================
   GALLERY MASONRY + LIGHTBOX
   ============================================= */
.gallery-masonry { columns: 3; column-gap: 1rem; }
.gallery-masonry .gal-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-masonry .gal-item img {
  width: 100%;
  border-radius: 12px;
  display: block;
  transition: transform 0.5s var(--transition);
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item .caption-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(45,27,78,0.85));
  backdrop-filter: blur(3px);
  color: white; padding: 2rem 0.85rem 0.85rem;
  border-radius: 0 0 12px 12px;
  opacity: 0; transition: opacity 0.3s var(--transition);
  font-size: 0.88rem;
}
.gal-item:hover .caption-overlay { opacity: 1; }
@media (max-width: 700px) { .gallery-masonry { columns: 2; } }
@media (max-width: 400px) { .gallery-masonry { columns: 1; } }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(15,5,35,0.93);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  object-fit: contain;
}
#lightbox-caption {
  position: absolute;
  bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
  background: rgba(0,0,0,0.45);
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  max-width: 80vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
#lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  color: white; font-size: 1.1rem;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  border: none; width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
#lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  border: none; width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.3); }
#lightbox-prev { left: 1.25rem; }
#lightbox-next { right: 1.25rem; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; width: 100%; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 0.5rem; }
.section-sub { color: var(--text-light); margin-bottom: 2.5rem; font-size: 1rem; }

/* Page header */
.page-header {
  background: linear-gradient(135deg, #43285f 0%, #271a4f 100%);
  color: white;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0px,
    transparent 24px,
    rgba(255,255,255,0.03) 24px,
    rgba(255,255,255,0.03) 48px
  );
}
.page-header h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; }
.page-header p { opacity: 0.85; margin-top: 0.5rem; position: relative; }

/* =============================================
   BLOG
   ============================================= */
.blog-card { display: flex; gap: 1.5rem; align-items: flex-start; }
.blog-card img {
  width: 160px; height: 120px;
  object-fit: cover; border-radius: 10px; flex-shrink: 0;
  transition: transform 0.4s var(--transition);
}
.blog-card:hover img { transform: scale(1.04); }
.blog-card .meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.35rem; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.blog-card p { font-size: 0.95rem; color: var(--text-light); }
@media (max-width: 500px) { .blog-card { flex-direction: column; } .blog-card img { width: 100%; height: 180px; } }

/* =============================================
   PRICE TAG
   ============================================= */
.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--peacock), var(--peacock-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #160836;
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 2rem 1.5rem;
  margin-top: auto;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-tagline { font-size: 0.87rem; opacity: 0.58; line-height: 1.65; margin-top: 0.4rem; }
.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.68); font-size: 0.9rem; transition: color 0.25s; }
.footer-links a:hover { color: var(--lilac); }
.footer-social { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-social a { color: rgba(255,255,255,0.68); font-size: 0.9rem; transition: color 0.25s; }
.footer-social a:hover { color: var(--lilac); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.76rem; opacity: 0.42; }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.76rem; transition: color 0.25s; }
.footer-legal a:hover { color: var(--lilac); }
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   EMPTY STATE
   ============================================= */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-light); }
.empty-state .icon { font-size: 3rem; margin-bottom: 1rem; }

/* =============================================
   ADMIN — unchanged
   ============================================= */
.admin-wrap { max-width: 1000px; margin: 2rem auto; padding: 0 1.5rem; }
.admin-nav {
  background: var(--text); color: white;
  padding: 0.75rem 2rem;
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
}
.admin-nav a { color: #c4b5fd; font-size: 0.9rem; font-weight: 700; }
.admin-nav a:hover { color: white; }
.admin-nav .brand { color: white; font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-right: auto; }
.admin-card {
  background: var(--card-bg);
  border-radius: 12px; padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.35rem; font-size: 0.9rem; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.6rem 0.9rem;
  border: 1.5px solid #c5b8f0; border-radius: 8px;
  font-size: 0.95rem; font-family: inherit;
  background: white; color: var(--text);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--peacock); }
.form-group textarea { min-height: 160px; resize: vertical; }
.alert { padding: 0.8rem 1.1rem; border-radius: 8px; margin-bottom: 1rem; font-size: 0.95rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { background: var(--peacock); color: white; padding: 0.65rem 0.9rem; text-align: left; }
.data-table td { padding: 0.65rem 0.9rem; border-bottom: 1px solid #e9e3ff; }
.data-table tr:hover td { background: #f3efff; }
.badge-yes { background: #d1fae5; color: #065f46; padding: 2px 8px; border-radius: 999px; font-size: 0.78rem; }
.badge-no  { background: #fee2e2; color: #991b1b; padding: 2px 8px; border-radius: 999px; font-size: 0.78rem; }
.stat-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: var(--peacock); color: white; border-radius: 12px; padding: 1.25rem 1.5rem; text-align: center; }
.stat-card .num { font-size: 2.5rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.stat-card .lbl { font-size: 0.85rem; opacity: 0.85; margin-top: 0.25rem; }
@media (max-width: 600px) { .stat-cards { grid-template-columns: 1fr; } }
