/* ROOT + RESET */
:root {
  --bg: #05060a;
  --bg-elevated: #0a0c12;
  --text: #f5f5f5;
  --muted: #a0a4b8;
  --gold: #f5c542;
  --gold-soft: rgba(245, 197, 66, 0.18);
  --accent: #ff7b32;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 1.2rem;
  --radius-md: 0.9rem;
  --radius-sm: 0.6rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.45);
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.28s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151827 0, #05060a 55%, #020308 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

/* SCROLLBAR (optional) */
body {
  min-height: 100vh;
}

/* LINKS */
a {
  color: inherit;
  text-decoration: none;
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #f5c542, #ff7b32);
  z-index: 100;
  transition: width 0.1s linear;
}

/* HEADER / NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.96),
    rgba(5, 6, 10, 0.88),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(245, 197, 66, 0.4);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #f5f5f5;
}

.logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links a {
  padding: 0.35rem 0.1rem;
  position: relative;
  color: #d0d3e0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 999px;
  transition: width var(--transition-med);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #ffffff;
}

/* THEME TOGGLE */
.theme-toggle {
  margin-left: 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 66, 0.5);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(5, 6, 10, 0.9);
  color: var(--text);
}

.theme-toggle span {
  font-size: 0.8rem;
}

/* LIGHT THEME OVERRIDES */
body.light {
  --bg: #f5f5f5;
  --bg-elevated: #ffffff;
  --text: #111111;
  --muted: #555;
  background: radial-gradient(circle at top, #ffffff 0, #f5f5f5 55%, #e9eaef 100%);
}

body.light .site-header {
  background: rgba(245, 245, 245, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light footer {
  background: #f5f5f5;
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.light .card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.light .section-sub {
  color: #555;
}

body.light .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(245, 245, 245, 0.1),
    rgba(245, 245, 245, 0.96)
  );
}

/* HERO */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-full {
  min-height: 82vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-carame.png");
  background-size: cover;
  background-position: center;
  filter: blur(0px) saturate(1.1);
  transform: scale(1.08);
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top,
      rgba(245, 197, 66, 0.18),
      transparent 55%
    ),
    linear-gradient(to bottom, rgba(5, 6, 10, 0.1), rgba(5, 6, 10, 0.96));
}

.hero-content {
  position: relative;
  max-width: 1120px;
  width: 100%;
  padding: 5.5rem 1.5rem 3.5rem;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 66, 0.6);
  background: rgba(5, 6, 10, 0.7);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1.1rem 0 0.6rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  max-width: 540px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #05060a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.btn-outline {
  background: transparent;
  color: #f5f5f5;
  border-color: rgba(245, 197, 66, 0.7);
}

.btn-outline:hover {
  background: rgba(245, 197, 66, 0.08);
}

/* MAIN SECTIONS */
main {
  background: radial-gradient(circle at top, #151827 0, #05060a 55%, #020308 100%);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.7rem;
  margin: 0;
}

.section-sub {
  max-width: 420px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ABOUT LAYOUT */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-layout p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: #d0d3e0;
  font-size: 0.96rem;
  line-height: 1.7;
}

.owner-card {
  background: radial-gradient(circle at top left, var(--gold-soft), #05060a);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(245, 197, 66, 0.4);
  box-shadow: var(--shadow-soft);
}

.owner-name {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
}

.owner-title {
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.owner-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(245, 197, 66, 0.12), #05060a);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  margin: 0.4rem 0 0.4rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #c4c7d6;
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 66, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* TESTIMONIALS */
.testimonials-grid .testimonial-card {
  position: relative;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #e0e2f0;
  margin-bottom: 0.7rem;
}

.testimonial-name {
  font-size: 0.85rem;
  color: var(--gold);
}

/* GALLERY */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 66, 0.4);
  background: transparent;
  color: #d0d3e0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(245, 197, 66, 0.12);
  color: #ffffff;
  border-color: rgba(245, 197, 66, 0.8);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
}

.gallery-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast), opacity 0.6s ease, transform 0.6s ease;
}

.gallery-img:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  border-color: rgba(245, 197, 66, 0.7);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 80;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(5, 6, 10, 0.96);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
}

.slide-btn {
  cursor: pointer;
  color: #f1f1f1;
  font-size: 32px;
  font-weight: bold;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, #151827 0, #05060a 55%, #020308 100%);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #a0a4b8;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  border-radius: 999px;
}

/* CONTACT / BOOKING FORMS */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #05060a;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0.9rem;
  color: var(--text);
  font-size: 0.9rem;
}

body.light .contact-form input,
body.light .contact-form textarea,
body.light .contact-form select {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.8rem;
}

.form-status.success {
  color: #4caf50;
}

.form-status.error {
  color: #ff5252;
}

/* SECTION ANIMATIONS */
.section,
.hero-content,
.card,
.gallery-img,
.owner-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.in-view,
.hero-content.in-view,
.card.in-view,
.gallery-img.in-view,
.owner-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ADMIN PAGE (from admin.html) */
.admin-local {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #0a0c12;
  border-radius: 1rem;
  border: 1px solid rgba(245, 197, 66, 0.3);
}

.admin-local h1 {
  margin-bottom: 1rem;
}

.admin-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.admin-item {
  background: #05060a;
  border-radius: 0.8rem;
  padding: 0.6rem;
  border: 1px solid #222;
  cursor: grab;
}

.admin-item img {
  width: 100%;
  border-radius: 0.6rem;
  margin-bottom: 0.4rem;
}

.admin-item input,
.admin-item select {
  width: 100%;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  padding: 0.3rem 0.4rem;
  border-radius: 0.4rem;
  border: 1px solid #333;
  background: #05060a;
  color: #f5f5f5;
}

.admin-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.note {
  font-size: 0.8rem;
  color: #b5b5b5;
  margin-top: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 0.7rem 1rem;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem;
    font-size: 0.78rem;
  }

  .hero-content {
    padding: 4.5rem 1.2rem 3rem;
  }

  .section {
    padding: 3rem 1.2rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }
}
/* ABOUT PHOTO UPDATE */
.about-photo-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-photo {
  width: 30%;
  border-radius: 1.2rem;
  object-fit: cover;
  border: 1px solid rgba(245, 197, 66, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
/* ABOUT — SIDE BY SIDE LAYOUT */
.about-side-by-side {
  grid-template-columns: 1.2fr 1.8fr;
  align-items: center;
  gap: 2.5rem;
}

.about-photo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-photo {
  width: 100%;
  max-width: 480px;
  border-radius: 1.2rem;
  object-fit: cover;
  border: 1px solid rgba(245, 197, 66, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.about-info p {
  margin-top: 1rem;
  color: #d0d3e0;
  line-height: 1.7;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .about-side-by-side {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 100%;
  }
}

