:root {
  --bg: #050609;
  --bg-alt: #0b0f19;
  --bg-elevated: #111827;
  --bg-soft: #18181b;

  --accent: #8b5cf6;       /* purple */
  --accent-2: #22c55e;     /* forest green */
  --accent-warm: #fbbf24;  /* amber/gold */

  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2937;

  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 14px 40px rgb(0 0 0 / 0.45);
  --shadow-subtle: 0 8px 25px rgb(0 0 0 / 0.3);

  --max-width: 1120px;
  --transition-fast: 150ms ease-out;
  --transition-med: 220ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout helpers */

.page {
  flex: 1 0 auto;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

.section--tight {
  padding: 2.25rem 0;
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.section__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.section__title {
  font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight: 700;
}

.section__subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.85));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.brand__logo-img {
  height: 42px;    /* Adjust if you want larger/smaller */
  width: auto;
  object-fit: contain;
}

.site-footer .brand__logo-img {
  height: 38px;    /* Slightly smaller for footer */
}


.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}


.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__title {
  font-weight: 700;
  font-size: 1rem;
}

.brand__tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__link {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.15rem;
  transition: color var(--transition-fast);
}

.nav__link:hover {
  color: var(--text-main);
}

.nav__link--active {
  color: #fef3c7;
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbbf24, #8b5cf6);
}

/* Mobile nav */

.nav-toggle {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.nav--mobile {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 1.25rem 1rem;
}

.nav--mobile .nav__link {
  font-size: 0.95rem;
}

/* Hero */

.hero {
  position: relative;
  padding: 3.5rem 0 3rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay so text stays readable over images */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96)),
    radial-gradient(circle at top, rgba(148, 163, 184, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.25fr);
  gap: 2.75rem;
  align-items: center;
}


.hero__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-2);
}

.hero__title {
  font-size: clamp(2.1rem, 1.5rem + 1.8vw, 2.8rem);
  line-height: 1.1;
  margin: 0.7rem 0 0.6rem;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 34rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 1.4rem;
}

.badge {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.16), rgba(15, 23, 42, 0.9));
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hero visual */

.hero-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.16), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card__title {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-card__pill {
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.84rem;
}

.hero-card__item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-card__item span:first-child {
  color: var(--text-muted);
}

.hero-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px dashed rgba(148, 163, 184, 0.3);
  padding-top: 0.8rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.btn--primary {
  background: linear-gradient(110deg, #fbbf24, #8b5cf6);
  color: #0b1120;
  box-shadow: var(--shadow-subtle);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgb(0 0 0 / 0.5);
}

.btn--ghost {
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn--ghost:hover {
  border-color: #fbbf24;
}

.btn--secondary {
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, 0.4);
}

.btn--full {
  width: 100%;
}

/* Cards & grids */

.card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  padding: 1.25rem 1.2rem;
}

.card--soft {
  background: radial-gradient(circle at 0 0, rgba(51, 65, 85, 0.5), #020617);
}

.card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.card__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card__meta {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-grid {
  display: grid;
  gap: 1.3rem;
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Offerings */

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.1rem;
}

.offerings-card {
  padding: 1rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.14), rgba(15, 23, 42, 0.96));
}

.offerings-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

/* Events */

.events-grid,
.events-list {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.event-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: radial-gradient(circle at top, rgba(129, 140, 248, 0.16), rgba(15, 23, 42, 0.96));
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top image area with blurred background (like product cards) */
.event-card__media {
  position: relative;
  margin: 0.9rem 0.9rem 0.4rem;
  border-radius: 1rem;
  overflow: hidden;
}

/* Aspect ratio for the header image */
.event-card__media::before {
  content: "";
  display: block;
  padding-top: 50%; /* a bit shorter than products */
}

.event-card__image-bg,
.event-card__image-main {
  position: absolute;
  inset: 0;
}

.event-card__image-bg {
  background-size: cover;
  background-position: center;
  filter: blur(16px);
  transform: scale(1.12);
  transform-origin: center;
}

.event-card__image-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}

.event-card__image-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.9rem;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.55);
}

/* Content */

.event-card__content {
  padding: 0.8rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.event-card__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.event-card__title {
  font-size: 1rem;
  font-weight: 600;
}

.event-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.event-card__pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  white-space: nowrap;
}

.event-card__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.event-card__description {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-card__footer {
  margin-top: 0.35rem;
  display: flex;
  justify-content: flex-end;
}

.event-card__rsvp {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, 0.7);
  background: rgba(30, 64, 175, 0.2);
  color: #c7d2fe;
  text-decoration: none;
}


/* Products */

.products-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: radial-gradient(circle at top, rgba(74, 222, 128, 0.14), rgba(15, 23, 42, 0.96));
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top image area with blur background + full image */
.product-card__media {
  position: relative;
  margin: 0.9rem 0.9rem 0.6rem;
  border-radius: 1rem;
  overflow: hidden;
}

/* Maintain a fixed aspect ratio */
.product-card__media::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.product-card__image-bg,
.product-card__image-main {
  position: absolute;
  inset: 0;
}

.product-card__image-bg {
  background-size: cover;
  background-position: center;
  filter: blur(16px);
  transform: scale(1.12);
  transform-origin: center;
}

.product-card__image-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}

.product-card__image-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.9rem;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.55);
}

/* Content area */

.product-card__content {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.product-card__title {
  font-size: 0.98rem;
  font-weight: 600;
}

.product-card__pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  white-space: nowrap;
}

.product-card__description {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 2.2em;
}

.product-card__footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.product-card__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4ade80;
}

.product-card__tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.6);
  color: #bbf7d0;
  background: rgba(21, 128, 61, 0.2);
  white-space: nowrap;
}



/* Private rooms */

.rooms-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Forms */

.form {
  display: grid;
  gap: 1rem;
}

.form__row {
  display: grid;
  gap: 0.8rem;
}

.form__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form__input,
.form__textarea {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  font-size: 0.9rem;
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.3);
}

.form__helper {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Location / map */

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Footer */

.site-footer {
  flex-shrink: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: radial-gradient(circle at top, #020617, #020617 60%, #000 100%);
  padding: 1.8rem 0 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.site-footer__col {
  max-width: 320px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--text-main);
}

/* Misc */

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.78rem;
}

.chip {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-muted);
}

/* Admin basic layout */

.admin-layout {
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 1.25rem 3rem;
}

.admin-card {
  margin-top: 1rem;
}

/* Responsive */

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    height: auto;
    padding: 0.75rem 0;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav--mobile {
    display: flex;
  }
}
