/* Basic reset and variables */
:root {
  --bg: #0f1115;
  --bg-alt: #151823;
  --text: #eaeef5;
  --muted: #b7c0d1;
  --accent: #ff7a5c; /* default muted */
  --accent-2: #7aa2ff;
  --card: #131725;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}
/* Theme variants */
.theme-muted {
  --accent: #ff7a5c;
  --accent-2: #7aa2ff;
}
.theme-vibrant {
  --accent: #ff5b2a;
  --accent-2: #4e8cff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(60% 80% at 80% 10%, #1b2030 0%, #0f1115 60%),
    linear-gradient(180deg, rgba(122,162,255,0.06), rgba(255,122,92,0.04));
}
/* Animated background overlay */
.bgfx { position: fixed; inset: -10% -10%; z-index: -1; pointer-events: none; overflow: hidden; }
/* switch to animated line effect */
.blob { display: none; }
.bgfx::before, .bgfx::after { content: ""; position: absolute; inset: -12%; }
/* vertical/horizontal lines moving */
.bgfx::before { background:
  repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, rgba(255,255,255,0) 1px 28px),
  repeating-linear-gradient(90deg, rgba(122,162,255,0.05) 0 1px, rgba(122,162,255,0) 1px 36px);
  mix-blend-mode: overlay; opacity: .18; animation: moveY 14s ease-in-out infinite alternate;
}
/* diagonal accent lines */
.bgfx::after { background:
  repeating-linear-gradient(45deg, rgba(255,122,92,0.06) 0 1px, rgba(255,122,92,0) 1px 46px);
  mix-blend-mode: screen; opacity: .14; animation: moveX 22s ease-in-out infinite alternate;
}
@keyframes moveY { from { transform: translateY(-18px); } to { transform: translateY(18px); } }
@keyframes moveX { from { transform: translateX(-28px); } to { transform: translateX(28px); } }
/* ultra-subtle grain */
.grain { position: absolute; inset: -100%; background-image: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2240%22 height=%2240%22 viewBox=%220 0 40 40%22><filter id=%22n%22><feTurbulence type=%22fractalNoise%22 baseFrequency=%220.8%22 numOctaves=%222%22 stitchTiles=%22stitch%22/></filter><rect width=%2240%22 height=%2240%22 filter=%22url(%23n)%22 opacity=%220.04%22/></svg>'); opacity: .06; animation: grainMove 12s linear infinite; mix-blend-mode: soft-light; }
@keyframes grainMove { from { transform: translate(0,0); } to { transform: translate(-40px,-40px); } }
@media (prefers-reduced-motion: reduce) { .bgfx::before, .bgfx::after, .grain, .hero::before { animation: none !important; } }

h1, h2, h3 { font-family: "Playfair Display", Inter, serif; letter-spacing: 0.2px; }
.lead { color: var(--muted); font-size: 1.05rem; }
.accent { background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(21, 24, 35, 0.6); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .2s ease;
}
.site-header.scrolled { background: rgba(21, 24, 35, 0.85); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; transition: padding .2s ease; }
.site-header.scrolled .header-inner { padding: 10px 0; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: 0.3px; font-size: 1.05rem; }
.brand img { height: 28px; width: auto; display: inline-block; }
.brand span { color: var(--accent); }
.nav a { position: relative; color: var(--text); text-decoration: none; margin-left: 18px; opacity: 0.95; padding-bottom: 4px; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .25s ease; }
.nav a:hover::after { width: 100%; }

/* Admin login button */
.admin-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-left: 16px;
  position: relative;
  overflow: hidden;
}
.admin-login-btn:hover {
  background: rgba(255, 122, 92, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 122, 92, 0.2);
}
.admin-login-btn:active {
  transform: translateY(0);
}
.admin-login-btn::after { display: none; }

/* Tooltip for admin button */
.admin-login-btn::before {
  content: attr(title);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 1000;
}
.admin-login-btn:hover::before {
  opacity: 1;
}

/* Admin login in mobile sidebar */
.admin-login-mobile {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted) !important;
  font-size: 14px;
}
.admin-login-mobile:hover {
  color: var(--accent) !important;
  background: rgba(255, 122, 92, 0.08);
}
.admin-login-mobile i {
  margin-right: 8px;
  font-size: 12px;
}

/* Burger and sidebar (mobile) */
.burger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: #111827; align-items: center; justify-content: center; gap: 4px; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; }
@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav { display: none; }
  .admin-login-btn { display: none; }
}
.sidebar { position: fixed; top: 0; left: 0; height: 100vh; width: 78%; max-width: 320px; background: #0f121a; border-right: 1px solid rgba(255,255,255,0.08); transform: translateX(-100%); transition: transform .25s ease; z-index: 120; }
.sidebar.open { transform: translateX(0); }
.sidebar-inner { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.sidebar-inner a { color: var(--text); text-decoration: none; padding: 10px 6px; border-radius: 8px; border: 1px solid transparent; }
.sidebar-inner a:hover { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
.sidebar-close { background: transparent; color: #fff; border: none; font-size: 1.6rem; align-self: flex-end; cursor: pointer; }
.backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.45); opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 110; }
.backdrop.show { opacity: 1; pointer-events: auto; }

/* Founders band */
.founders-band { padding: 20px 0; background: linear-gradient(180deg, rgba(122,162,255,0.08), rgba(255,122,92,0.06)); border-bottom: 1px solid rgba(255,255,255,0.06); }
.founders-inner { display: grid; grid-template-columns: 1fr; align-items: center; gap: 14px; }
.founders-photos { display: flex; gap: 12px; align-items: center; }
.founder-card { position: relative; width: 140px; height: 188px; border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow); background: #0d1220; transform-style: preserve-3d; }
.founder-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%); }
.founder-card::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; pointer-events: none; }
.founder-card .shine { content: ""; position: absolute; top: -120%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 210deg, rgba(255,255,255,0.0), rgba(255,255,255,0.22), rgba(255,255,255,0)); transform: rotate(8deg); mix-blend-mode: overlay; transition: transform .35s ease, opacity .35s ease; opacity: .35; }
.founder-card:hover .shine { transform: translateX(10%) rotate(8deg); opacity: .55; }
.parallax { will-change: transform; }
@media (min-width: 900px) { .founders-inner { grid-template-columns: auto 1fr; } .founder-card { width: 200px; height: 260px; } }

/* Founder animation */
.founder-card { animation: bob var(--dur, 11s) ease-in-out infinite alternate; }
@keyframes bob { from { transform: translateY(0); } to { transform: translateY(8px); } }

/* Hero */
.hero { padding: 112px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 600px; height: 600px; background: radial-gradient(50% 50% at 50% 50%, rgba(255,122,92,0.18), rgba(122,162,255,0)); filter: blur(20px); top: -120px; right: -120px; pointer-events: none; animation: float 14s ease-in-out infinite alternate; }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.3rem); margin: 0 0 12px; }
.hero .hero-cta { display: flex; gap: 12px; justify-content: center; }
.hero p.lead { margin: 0 0 24px; }
@keyframes float { from { transform: translateY(0) } to { transform: translateY(18px) } }

.btn {
  display: inline-block; background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff; text-decoration: none; padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0,0,0,0.4); filter: brightness(1.05); }
.btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,0.18); color: var(--text); }
.btn.ghost:hover { border-color: rgba(255,255,255,0.35); }

/* Sections */
.section { padding: 64px 0; }
.section.alt { background: var(--bg-alt); }
.section-title { font-size: 1.6rem; margin: 0 0 20px; }
.muted { color: var(--muted); }
.mt-32 { margin-top: 32px; }
.note { color: var(--muted); font-size: 0.95rem; margin-top: 12px; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.filter { background: #101726; color: var(--text); border: 1px solid rgba(255,255,255,0.08); padding: 8px 12px; border-radius: 999px; cursor: pointer; }
.filter.active { background: linear-gradient(90deg, rgba(255,106,61,0.18), rgba(106,158,255,0.2)); border-color: rgba(255,255,255,0.18); }

/* Galleries */
.category { margin-bottom: 28px; }
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.tile { position: relative; border-radius: 14px; overflow: hidden; background: #0c0f16; border: 1px solid rgba(255,255,255,0.06); transform-style: preserve-3d; transition: transform .2s ease, box-shadow .2s ease; }
.tile:hover { box-shadow: 0 18px 34px rgba(0,0,0,0.45); }
.gallery img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .45s ease; }
.tile:hover img { transform: scale(1.06); }
.overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55)); display: flex; align-items: end; justify-content: flex-start; padding: 10px; }
.overlay .label { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 4px 8px; border-radius: 8px; font-size: 0.82rem; backdrop-filter: blur(6px); }

/* Cards for services */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 18px;
}
.card {
  background: linear-gradient(180deg, #141a2a, #111624);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,0.45); }
.service-title { margin: 0 0 8px; font-size: 1.2rem; }
.service-desc { margin: 0 0 12px; color: var(--muted); }
.price { font-weight: 800; font-size: 1.3rem; }
.price .unit { font-weight: 600; font-size: 0.95rem; color: var(--muted); margin-left: 6px; }
.badge { display: inline-block; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); padding: 4px 8px; border-radius: 999px; font-size: 0.8rem; margin-left: 8px; color: var(--muted); }

/* Chips for addons */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip { background: #20263a; color: var(--text); border: 1px solid rgba(255,255,255,0.06); border-radius: 999px; padding: 8px 12px; font-size: 0.95rem; }
.chip .chip-price { color: var(--accent-2); font-weight: 700; margin-left: 8px; }

/* Testimonials */
.testimonials { display: grid; gap: 12px; }
.testimonial { background: #131725; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px; color: var(--muted); }
.testimonial span { color: var(--text); display: inline-block; margin-left: 6px; }

/* FAQ */
.faq details { background: #131725; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 12px 14px; }
.faq details + details { margin-top: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); }

/* CTA band */
.cta-band { background: linear-gradient(90deg, rgba(255,106,61,0.1), rgba(106,158,255,0.12)); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 0; }
@media (max-width: 640px) { .cta-inner { flex-direction: column; text-align: center; } }

/* Contact + socials */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .contact-grid { grid-template-columns: 1.2fr .8fr; } }
.link { color: var(--accent-2); text-underline-offset: 3px; }
.link:hover { color: var(--accent); }
.socials { display: flex; align-items: center; gap: 12px; }
.social { display: inline-flex; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; color: #fff; opacity: 0.95; transition: transform .2s ease, opacity .2s ease; background: #20263a; border: 1px solid rgba(255,255,255,0.06); }
.social:hover { transform: translateY(-2px); opacity: 1; }
.social svg { width: 22px; height: 22px; fill: currentColor; }
.instagram { background: radial-gradient(120% 120% at 80% 20%, #f58529, #dd2a7b 45%, #8134af 70%, #515bd4); }
.facebook { background: #1877f2; }
.whatsapp { background: #25d366; color: #093; }

/* Booking form */
.booking-form { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 16px; box-shadow: var(--shadow); }
.form-row { display: flex; flex-direction: column; margin-bottom: 12px; }
.form-row label { font-size: 0.9rem; margin-bottom: 6px; color: var(--muted); }
.form-row input, .form-row select, .form-row textarea { background: #0e1421; border: 1px solid rgba(255,255,255,0.08); color: var(--text); border-radius: 10px; padding: 10px 12px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 2px solid rgba(106, 158, 255, 0.45); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.8); display: none; align-items: center; justify-content: center; z-index: 100; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.6); color: #fff; border: none; border-radius: 999px; width: 40px; height: 40px; font-size: 1.4rem; cursor: pointer; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal-visible { opacity: 1; transform: translateY(0); }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); background: #0f121a; }
.footer-inner { padding: 18px 0; text-align: center; color: var(--muted); font-size: 0.95rem; }
