html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}




/* Custom styling */
:root {
  /* --brand-green: oklch(59.6% 0.145 163.225);
  --brand-dark-green: oklch(43.2% 0.095 166.913); */
  --brand-tea: oklch(26.8% 0.007 34.298);
  --brand-gold: #c5a059;/* oklch(76.9% 0.188 70.08); */
  --header-h: 100px;

  --brand-green: #344E35; /* Kyoto Velvet Matcha 800 */
  --brand-rosewater: #EACAC0; /* Delicate Lychee */
}

body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #fbfaf8; }
.font-serif { font-family: 'Playfair Display', serif; }
.glass { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); }
.custom-scrollbar::-webkit-scrollbar { width: 5px; }

/* Header */
header {
  height: var(--header-h);
}

.brand-title {
    color: white !important;
    border-color: white !important;
}

.nav-link {
    position: relative;
    color: white !important;
    font-size: 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-rosewater) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-rosewater);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

footer a {
  color: var(--brand-tea) !important;
}







.font-serif {
    font-family: 'Playfair Display', serif;
}

#carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide.inactive {
    opacity: 0;
    z-index: 1;
}

.slide-subtitle {
    color: var(--brand-gold);
    font-weight: 700;
}

/* Fluid glassmorphism for notifications */
.glass-panel {
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F9F4E8;
}
::-webkit-scrollbar-thumb {
    background: #CEDECF;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #344E35;
}