/* ========================================================================
   Velmoorio Base Styles
   Modern, premium, elegant, bright, warm hospitality theme
   ======================================================================== */

/* ========================================================================
   1. CSS Variables (Design Tokens)
   ======================================================================== */

:root {
  /* Color Palette -------------------------------------------------------- */
  /* Core background & text */
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #f8f6f3;
  --color-surface-elevated: #ffffff;

  --color-text: #1f2933; /* deep, elegant neutral */
  --color-text-soft: #4b5563;
  --color-text-muted: #6b7280;
  --color-text-on-dark: #f9fafb;

  /* Brand / Accent (gold, emerald, champagne) */
  --color-primary: #c89a3c;          /* warm gold */
  --color-primary-soft: #f3e3c0;     /* champagne tint */
  --color-primary-dark: #9b7830;

  --color-accent-emerald: #1f7a63;   /* deep emerald */
  --color-accent-emerald-soft: #e0f2ec;

  /* State colors */
  --color-success: #2e7d32;
  --color-success-soft: #e1f3e1;
  --color-warning: #b76b1b;
  --color-warning-soft: #fff3e0;
  --color-danger: #b3261e;
  --color-danger-soft: #fdecea;

  /* Neutral grays */
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2933;
  --color-gray-900: #111827;

  /* Overlays */
  --color-backdrop-soft: rgba(15, 23, 42, 0.3);
  --color-backdrop-strong: rgba(15, 23, 42, 0.65);

  /* Typography ---------------------------------------------------------- */
  /* Modern premium pairing: serif for headings, sans for body */
  --font-family-sans: "SF Pro Text", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  --font-family-serif: "Playfair Display", "Times New Roman", serif;
  --font-family-mono: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;

  /* Base font sizes (mobile-first) */
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.0625rem; /* 17px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --font-size-5xl: 3rem;     /* 48px */

  /* Line heights */
  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* Spacing Scale (0–96px) --------------------------------------------- */
  --space-0: 0;
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* Radii --------------------------------------------------------------- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows ------------------------------------------------------------- */
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-medium: 0 18px 45px rgba(15, 23, 42, 0.16);
  --shadow-strong: 0 28px 80px rgba(15, 23, 42, 0.25);

  /* Borders ------------------------------------------------------------- */
  --border-color-subtle: rgba(148, 163, 184, 0.35);
  --border-color-soft: rgba(148, 163, 184, 0.25);

  /* Transitions --------------------------------------------------------- */
  --transition-fast: 150ms ease-out;
  --transition-normal: 220ms ease-out;
  --transition-slow: 320ms ease-out;

  /* Layout -------------------------------------------------------------- */
  --container-max-width: 1120px;
  --container-max-width-wide: 1320px;
  --header-height: 72px;
}

/* Larger breakpoints: refine typography for desktop */
@media (min-width: 768px) {
  :root {
    --font-size-xl: 1.375rem; /* 22px */
    --font-size-2xl: 1.75rem; /* 28px */
    --font-size-3xl: 2.25rem; /* 36px */
    --font-size-4xl: 2.75rem; /* 44px */
    --font-size-5xl: 3.5rem;  /* 56px */
  }
}

/* ========================================================================
   2. Reset / Normalize
   ======================================================================== */

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

p,
figure,
blockquote,
ul,
ol,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
}

ul,
ol {
  padding-left: 1.2em;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

button:disabled,
[disabled] {
  cursor: not-allowed;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* ========================================================================
   3. Base Typography & Layout
   ======================================================================== */

body {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

/* Headings: premium serif with controlled margins */

h1,
.h1 {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  letter-spacing: 0.01em;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

h2,
.h2 {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-snug);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-3);
}

h3,
.h3 {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-snug);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

h4,
.h4 {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-snug);
  font-weight: 600;
  text-transform: none;
  margin-bottom: var(--space-2);
}

h5,
.h5 {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

h6,
.h6 {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

p {
  margin-bottom: var(--space-3);
  color: var(--color-text-soft);
}

p + p {
  margin-top: -0.25rem;
}

strong,
b {
  font-weight: 600;
}

small {
  font-size: 0.875em;
}

/* Links: elegant underline on hover only */

a {
  color: var(--color-accent-emerald);
  text-decoration: none;
  transition: color var(--transition-normal),
    text-decoration-color var(--transition-normal),
    opacity var(--transition-fast);
}

a:hover,
a:focus-visible {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.19em;
}

/* Horizontal rule as subtle divider */

hr {
  border: 0;
  border-top: 1px solid var(--border-color-soft);
  margin: var(--space-6) 0;
}

/* Lists */

ul,
ol {
  margin-bottom: var(--space-3);
  color: var(--color-text-soft);
}

/* ========================================================================
   4. Accessibility & Motion
   ======================================================================== */

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Screen reader only (visually hidden) */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================================================
   5. Layout Utilities
   ======================================================================== */

/* Containers ------------------------------------------------------------ */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.container--wide {
  max-width: var(--container-max-width-wide);
}

.section {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.section--alt {
  background: var(--color-surface-soft);
}

.section-heading {
  margin-bottom: var(--space-6);
}

.section-subtitle {
  font-size: var(--font-size-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

/* Flex helpers ---------------------------------------------------------- */

.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

/* Grid helpers ---------------------------------------------------------- */

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Alignment & spacing utilities ---------------------------------------- */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.py-4 {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.py-6 {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }

.w-full { width: 100%; }

/* Hero utilities for large visual sections ----------------------------- */

.hero {
  position: relative;
  min-height: 70vh;
  color: var(--color-text-on-dark);
  display: flex;
  align-items: center;
}

.hero--bright {
  color: var(--color-text);
}

.hero-overlay-soft {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.55),
    rgba(15, 23, 42, 0.25)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* ========================================================================
   6. Components
   ======================================================================== */

/* Buttons --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--transition-normal),
    color var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, #d7b56b, #c89a3c);
  color: var(--color-text-on-dark);
  box-shadow: 0 14px 30px rgba(200, 154, 60, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(200, 154, 60, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(200, 154, 60, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(31, 122, 99, 0.4);
  color: var(--color-accent-emerald);
}

.btn-outline:hover {
  background-color: var(--color-accent-emerald-soft);
  border-color: var(--color-accent-emerald);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text);
}

.btn-ghost:hover {
  background-color: rgba(148, 163, 184, 0.08);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: var(--font-size-xs);
}

.btn-lg {
  padding: 0.9rem 1.9rem;
  font-size: var(--font-size-md);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-icon {
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

/* Forms: inputs, textareas, selects ------------------------------------ */

.form-control {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color-soft);
  background-color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-control:focus-visible {
  outline: none;
  border-color: rgba(200, 154, 60, 0.9);
  box-shadow: 0 0 0 1px rgba(200, 154, 60, 0.7), 0 10px 30px rgba(15, 23, 42, 0.12);
  background-color: #ffffff;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  padding-right: 2.25rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-text-soft) 50%),
    linear-gradient(135deg, var(--color-text-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.form-helper {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.form-error {
  font-size: var(--font-size-xs);
  color: var(--color-danger);
  margin-top: 0.25rem;
}

.form-control.is-invalid {
  border-color: rgba(179, 38, 30, 0.9);
  box-shadow: 0 0 0 1px rgba(179, 38, 30, 0.5);
}

/* Cards --------------------------------------------------------------- */

.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-soft);
  padding: var(--space-5);
}

.card--soft {
  background: radial-gradient(circle at top left, #fdf8ee, #ffffff);
}

.card-header {
  margin-bottom: var(--space-3);
}

.card-title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-1);
}

.card-meta {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

/* Tag / Pill for categories like "Poker večery", "Gastronómia" ------- */

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 154, 60, 0.4);
  color: var(--color-primary-dark);
  background: rgba(243, 227, 192, 0.45);
}

.tag--emerald {
  border-color: rgba(31, 122, 99, 0.4);
  background: rgba(224, 242, 236, 0.65);
  color: var(--color-accent-emerald);
}

/* Badges for statuses like "Nadchádzajúce", "VIP" -------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
}

.badge-success {
  background-color: var(--color-success-soft);
  color: var(--color-success);
}

.badge-warning {
  background-color: var(--color-warning-soft);
  color: var(--color-warning);
}

.badge-danger {
  background-color: var(--color-danger-soft);
  color: var(--color-danger);
}

/* Navigation (base styling only, structure handled in HTML) ------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-family-serif);
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-link {
  position: relative;
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.35rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #c89a3c, #1f7a63);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link--active::after {
  width: 100%;
}

@media (max-width: 767.98px) {
  .navbar-menu {
    display: none; /* to be toggled by JS for mobile menu */
  }
}

/* Footer --------------------------------------------------------------- */

.site-footer {
  background: #0f172a;
  color: rgba(248, 250, 252, 0.9);
  padding-top: var(--space-10);
  padding-bottom: var(--space-6);
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  color: #facc6b;
}

.footer-legal {
  margin-top: var(--space-6);
  font-size: var(--font-size-xs);
  color: rgba(248, 250, 252, 0.7);
}

/* Gallery base styles -------------------------------------------------- */

.gallery-grid {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-slow),
    filter var(--transition-slow);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.45),
    transparent 40%
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.03);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Chips / filters for menu & events ----------------------------------- */

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background-color: var(--color-surface-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: var(--font-size-xs);
  cursor: pointer;
  transition: background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.chip--active {
  background-color: #1f7a63;
  border-color: #1f7a63;
  color: var(--color-text-on-dark);
}

/* Alerts for informational legal notes -------------------------------- */

.alert {
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  font-size: var(--font-size-sm);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.alert-info {
  background-color: #e0f2ec;
  color: #1f4334;
  border: 1px solid rgba(31, 122, 99, 0.4);
}

.alert-warning {
  background-color: var(--color-warning-soft);
  color: var(--color-warning);
  border: 1px solid rgba(183, 107, 27, 0.5);
}

/* Tables for menu listings -------------------------------------------- */

.table-menu {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.4rem;
  font-size: var(--font-size-sm);
}

.table-menu tbody tr {
  background-color: rgba(255, 255, 255, 0.8);
}

.table-menu tbody tr td {
  padding: 0.55rem 0.75rem;
}

.table-menu tbody tr td:first-child {
  border-radius: 999px 0 0 999px;
}

.table-menu tbody tr td:last-child {
  border-radius: 0 999px 999px 0;
  text-align: right;
  white-space: nowrap;
}

.table-menu .menu-item-title {
  font-weight: 500;
  color: var(--color-text);
}

.table-menu .menu-item-desc {
  display: block;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
}

/* Chips / labels for offline-only poker messaging --------------------- */

.label-offline-only {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background-color: #e0f2ec;
  color: #1f4334;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ========================================================================
   7. Helper Classes specific to Velmoorio atmosphere
   ======================================================================== */

.bg-champagne {
  background: radial-gradient(circle at top left, #fdf4e3, #ffffff);
}

.text-gold {
  color: var(--color-primary);
}

.text-emerald {
  color: var(--color-accent-emerald);
}

.text-muted {
  color: var(--color-text-muted);
}

/* Subtle gradient border wrapper for VIP / premium sections ----------- */

.premium-frame {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(200, 154, 60, 0.5), rgba(31, 122, 99, 0.3));
}

.premium-frame-inner {
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.96);
  padding: var(--space-5);
}

/* End of base.css */
