/* ═══════════════════════════════════════════════════════════════
   Keslar Decor & Events — Main Stylesheet
   Version 2.0.0
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --gold:       #c9a84c;
  --gold-light: #e8d4a0;
  --gold-pale:  #f7f0df;
  --cream:      #fdf8f2;
  --dark:       #1c1714;
  --charcoal:   #3b3530;
  --mid:        #7a6e66;
  --white:      #ffffff;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SHARED HELPERS ── */
.section-label {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: ''; height: 1px; background: var(--gold); flex: 0 0 28px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.4rem);
  font-weight: 400; line-height: 1.15; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body { font-size: 0.95rem; color: var(--mid); max-width: 500px; margin-top: 16px; }
.divider { width: 60px; height: 2px; background: linear-gradient(to right, var(--gold), transparent); margin: 24px 0; }

/* ═══════════════════════════
   NAV
   ═══════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(253,248,242,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: padding 0.3s, box-shadow 0.3s;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  letter-spacing: 0.04em; color: var(--dark); text-decoration: none;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 26px; border: 1px solid var(--gold);
  color: var(--gold); background: transparent;
  text-decoration: none; transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--white); }

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-ornament {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 680px; height: 680px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%; pointer-events: none;
  animation: pulse-ring 4s ease-in-out infinite;
}
.hero-ornament::before {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(201,168,76,0.18); border-radius: 50%;
}
@keyframes pulse-ring {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  50%      { transform: translate(-50%,-50%) scale(1.03); opacity: 1; }
}
.hero-content {
  position: relative; text-align: center;
  color: var(--white); padding: 0 20px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
  animation: fadeUp 1.2s 0.2s ease both;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 8px;
  animation: fadeUp 1.2s 0.3s ease both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-family: var(--serif); font-size: clamp(1.1rem,2vw,1.5rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.8); margin-bottom: 44px;
  animation: fadeUp 1.2s 0.4s ease both;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1.2s 0.55s ease both;
}
.btn-primary {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 38px; background: var(--gold);
  color: var(--white); text-decoration: none; transition: all 0.3s;
}
.btn-primary:hover { background: #b8923c; transform: translateY(-2px); }
.btn-ghost {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 38px; border: 1px solid rgba(255,255,255,0.6);
  color: var(--white); text-decoration: none; transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.3) translateY(15px); }
}

/* ═══════════════════════════
   ABOUT
   ═══════════════════════════ */
.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; background: var(--white);
  padding: 100px 60px;
}
.about-images { position: relative; height: 540px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 72%; height: 88%;
  object-fit: cover; box-shadow: 20px 20px 60px rgba(0,0,0,0.12);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 52%; height: 54%;
  object-fit: cover; border: 6px solid var(--white);
  box-shadow: 8px 8px 30px rgba(0,0,0,0.1);
}
.about-gold-block {
  position: absolute; top: -20px; left: -20px;
  width: 80px; height: 80px;
  background: var(--gold-pale); border: 1px solid rgba(201,168,76,0.35);
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.stat-box { border-left: 2px solid var(--gold); padding-left: 16px; }
.stat-num {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 400;
  color: var(--dark); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--mid); letter-spacing: 0.08em; margin-top: 4px; }

/* ═══════════════════════════
   SERVICES
   ═══════════════════════════ */
.services-section { background: var(--cream); text-align: center; padding: 100px 60px; }
.services-section .section-label { justify-content: center; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 28px; margin-top: 60px;
}
.service-card {
  background: var(--white); padding: 44px 32px;
  border-top: 3px solid transparent;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); }
.service-icon { font-size: 2rem; margin-bottom: 20px; }
.service-name {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 400;
  color: var(--dark); margin-bottom: 12px;
}
.service-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.75; }

/* ═══════════════════════════
   GALLERY
   ═══════════════════════════ */
.gallery-section { background: var(--dark); color: var(--white); padding: 100px 60px; }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-body { color: rgba(255,255,255,0.6); }
.gallery-section .section-label { color: var(--gold-light); }
.gallery-section .section-label::before,
.gallery-section .section-label::after { background: var(--gold-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px; margin-top: 50px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(201,168,76,0.6), transparent);
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--white); }

/* ═══════════════════════════
   TESTIMONIALS
   ═══════════════════════════ */
.testimonials { background: var(--gold-pale); text-align: center; padding: 100px 60px; }
.testimonials .section-label { justify-content: center; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 28px; margin-top: 56px;
}
.testi-card { background: var(--white); padding: 40px 32px; text-align: left; position: relative; }
.testi-quote {
  font-family: var(--serif); font-size: 4rem; line-height: 0;
  color: var(--gold); opacity: 0.3; position: absolute;
  top: 28px; left: 28px;
}
.testi-text {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  color: var(--charcoal); margin-top: 20px; margin-bottom: 24px; line-height: 1.7;
}
.testi-name { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
.testi-event { font-size: 0.75rem; color: var(--gold); margin-top: 2px; }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }

/* ═══════════════════════════
   BOOKING FORM
   ═══════════════════════════ */
#booking {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; padding: 0;
}
.booking-left {
  background: var(--dark); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.booking-left .section-label { color: var(--gold-light); }
.booking-left .section-label::before,
.booking-left .section-label::after { background: var(--gold-light); }
.booking-left .section-title { color: var(--white); }
.booking-left .section-body { color: rgba(255,255,255,0.6); }
.booking-info { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.binfo-item { display: flex; align-items: flex-start; gap: 16px; }
.binfo-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.binfo-text strong {
  display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); font-weight: 500; margin-bottom: 2px;
}
.binfo-text span { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.binfo-text a { color: var(--gold); text-decoration: none; }

.booking-right { padding: 80px 60px; background: var(--white); }
.form-title {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 400;
  color: var(--dark); margin-bottom: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
  padding: 13px 16px; border: 1px solid #e2d9ce;
  background: var(--cream); color: var(--dark);
  outline: none; transition: border-color 0.25s, box-shadow 0.25s;
  border-radius: 0; appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.reach-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--charcoal);
  margin-bottom: 12px; display: block;
}
.reach-options { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.reach-option { position: relative; }
.reach-option input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.reach-option label {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border: 1px solid #e2d9ce;
  background: var(--cream); color: var(--charcoal);
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em;
  cursor: pointer; transition: all 0.2s; text-transform: none;
}
.reach-option input[type="checkbox"]:checked + label {
  border-color: var(--gold); background: var(--gold-pale); color: var(--dark);
}
.reach-option label .reach-icon { font-size: 1rem; }
.form-submit {
  width: 100%;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px; background: var(--gold);
  color: var(--white); border: none; cursor: pointer;
  transition: all 0.3s; margin-top: 12px;
}
.form-submit:hover { background: #b8923c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.success-msg {
  display: none; text-align: center; padding: 30px;
  background: var(--gold-pale); border: 1px solid var(--gold);
  margin-top: 20px;
}
.success-msg h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--dark); margin-bottom: 8px; }
.success-msg p { font-size: 0.88rem; color: var(--mid); }

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
footer {
  background: #110f0d; color: rgba(255,255,255,0.55);
  padding: 70px 60px 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--white); margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tagline { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { font-size: 0.87rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.78rem;
}

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .about,
  .services-section,
  .gallery-section,
  .testimonials { padding: 70px 24px; }
  .booking-left { padding: 60px 24px; }
  .booking-right { padding: 60px 24px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 340px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  #booking { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  footer { padding: 50px 24px 28px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   WHATSAPP
   ════════════════════════════ */

/* Contact section link */
.whatsapp-contact-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 4px;
  color: #25d366; font-weight: 600; font-size: 0.97rem;
  text-decoration: none; transition: color 0.2s;
}
.whatsapp-contact-link:hover { color: #1aab52; text-decoration: underline; }

/* Floating bubble */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: #25d366;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: wa-pop 0.5s 1.5s cubic-bezier(.34,1.56,.64,1) both;
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.wa-float-label {
  color: #fff; font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.02em; white-space: nowrap;
}
@keyframes wa-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.7); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
/* Collapse to icon-only on small screens */
@media (max-width: 480px) {
  .wa-float { padding: 14px; border-radius: 50%; }
  .wa-float-label { display: none; }
}
