/* --- STYLESHEET UNTUK GAYA HIDUP AKTIF DAN KESEIMBANGAN METABOLISME --- */

:root {
  /* COLOR PALETTE - THEME: COLORFUL (High Contrast Accent Bands) */
  --pulse-bg-primary: #0a0f1d;
  --pulse-bg-secondary: #121829;
  --pulse-accent-vibrant: #ff5e62;
  --pulse-accent-bright: #ff9966;
  --pulse-accent-fresh: #00f2fe;
  --pulse-accent-mint: #4facfe;
  --pulse-text-light: #ffffff;
  --pulse-text-muted: #a2b4c7;
  --pulse-text-dark: #121829;
  --pulse-surface-white: #ffffff;
  --pulse-surface-light: #f7f9fc;
  
  /* GRADIENTS */
  --pulse-grad-sunset: linear-gradient(135deg, #ff5e62 0%, #ff9966 100%);
  --pulse-grad-ocean: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --pulse-grad-deep: linear-gradient(135deg, #121829 0%, #0a0f1d 100%);
  
  /* TYPOGRAPHY */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* SYSTEM STYLES */
  --pulse-radius-soft: 16px;
  --pulse-shadow-raised: 0 10px 30px rgba(0, 0, 0, 0.15);
  --pulse-shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.3);
  --pulse-padding-normal: 10dvh;
}

/* Base resets & global rules */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--pulse-text-light);
  background-color: var(--pulse-bg-primary);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Scroll-driven progress bar */
.active-navbar-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--pulse-grad-sunset);
  width: 0%;
  z-index: 10000;
  animation: active-progress-grow auto linear;
  animation-timeline: scroll();
}

@keyframes active-progress-grow {
  to { width: 100%; }
}

/* Scroll-driven fade reveal */
.active-scroll-reveal {
  animation: active-fade-reveal auto linear;
  animation-timeline: view();
  animation-range: entry 5% cover 25%;
}

@keyframes active-fade-reveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* LAYOUT PRESET L: COLOR BANDS & HIGH CONTRAST */

/* --- HEADER BANNER --- */
.active-header-band {
  background: var(--pulse-grad-sunset);
  color: var(--pulse-text-light);
  padding: 1rem 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--pulse-shadow-raised);
}

.active-logo-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.active-logo-box svg {
  fill: currentColor;
}

.active-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.active-nav-links a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--pulse-radius-soft);
}

.active-nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Toggle (CSS-only Burger) */
.active-burger-trigger {
  display: none;
}

.active-burger-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.active-burger-icon span {
  width: 25px;
  height: 3px;
  background-color: var(--pulse-text-light);
  transition: 0.3s;
}

/* --- HERO BANNER (PRESET L: Solid Accent, No Background Image Inside) --- */
.gluko-hero-panel {
  min-height: 80vh;
  background: var(--pulse-grad-sunset);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--pulse-padding-normal) 8vw;
  color: var(--pulse-text-light);
}

.gluko-hero-heading {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 1100px;
}

.gluko-hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  max-width: 800px;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.gluko-pill-action {
  background: var(--pulse-text-light);
  color: var(--pulse-accent-vibrant);
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  box-shadow: var(--pulse-shadow-deep);
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gluko-pill-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 94, 98, 0.4);
  background: var(--pulse-surface-light);
}

/* --- FULL WIDTH BANNER IMAGE BAND --- */
.gluko-full-banner-img {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  display: block;
}

/* --- SPLIT COLOURED BAND (Pull Quote + Image) --- */
.gluko-split-block {
  display: flex;
  background: var(--pulse-bg-secondary);
  flex-wrap: wrap;
}

.gluko-split-quote {
  flex: 1 1 50%;
  padding: var(--pulse-padding-normal) 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gluko-split-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--pulse-accent-bright);
}

.gluko-split-quote p {
  color: var(--pulse-text-muted);
  font-size: 1.1rem;
}

.gluko-split-media {
  flex: 1 1 45%;
  min-height: 350px;
  background-size: cover;
  background-position: center;
}

/* --- FEATURES STRIP (Alternating bands) --- */
.gluko-feature-strip-item {
  display: flex;
  gap: 4rem;
  align-items: center;
  padding: 8dvh 8vw;
}

.gluko-feature-strip-item:nth-child(odd) {
  background: var(--pulse-bg-primary);
}

.gluko-feature-strip-item:nth-child(even) {
  background: var(--pulse-bg-secondary);
}

.gluko-feature-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  color: var(--pulse-accent-fresh);
  line-height: 1;
  flex-shrink: 0;
}

.gluko-feature-desc-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--pulse-text-light);
}

.gluko-feature-desc-box p {
  color: var(--pulse-text-muted);
  font-size: 1.1rem;
  max-width: 700px;
}

/* --- HOW IT WORKS STRIP (3 Steps Horizontal) --- */
.gluko-steps-strip {
  background: var(--pulse-grad-ocean);
  color: var(--pulse-text-dark);
  padding: var(--pulse-padding-normal) 8vw;
  text-align: center;
}

.gluko-steps-strip h2 {
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--pulse-text-dark);
}

.gluko-steps-grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.gluko-steps-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 3rem 2rem;
  border-radius: var(--pulse-radius-soft);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.gluko-steps-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--pulse-text-dark);
  margin-bottom: 1.5rem;
}

.gluko-steps-item h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--pulse-text-dark);
}

.gluko-steps-item p {
  font-size: 1.05rem;
  color: var(--pulse-text-dark);
}

/* --- CTA STRIP BAND (Brightest and Max Whitespace) --- */
.gluko-cta-strip-panel {
  background: var(--pulse-grad-sunset);
  padding: 12dvh 8vw;
  text-align: center;
}

.gluko-cta-strip-panel h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2rem;
  color: var(--pulse-text-light);
}

.gluko-cta-strip-panel .gluko-pill-action {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* --- STATS BAND (expert.html) --- */
.gluko-stats-band-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.gluko-stat-mini-row {
  flex: 1 1 25%;
  min-width: 250px;
  padding: 4rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.gluko-stat-mini-row:last-child {
  border-right: none;
}

.gluko-stat-mini-row:nth-child(1) { background: #13192b; }
.gluko-stat-mini-row:nth-child(2) { background: #1a223a; }
.gluko-stat-mini-row:nth-child(3) { background: #212b49; }
.gluko-stat-mini-row:nth-child(4) { background: #293558; }

.gluko-stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--pulse-accent-bright);
  margin-bottom: 0.5rem;
}

.gluko-stat-label {
  font-size: 1rem;
  color: var(--pulse-text-muted);
}

/* --- RESERVATION FORM & FAQ (reserve.html) --- */
.gluko-form-wrapper-band {
  background: var(--pulse-surface-white);
  color: var(--pulse-text-dark);
  padding: var(--pulse-padding-normal) 8vw;
  display: flex;
  justify-content: center;
}

.gluko-form-box {
  width: 100%;
  max-width: 560px;
  background: var(--pulse-surface-light);
  padding: 3rem;
  border-radius: var(--pulse-radius-soft);
  box-shadow: var(--pulse-shadow-raised);
}

.gluko-form-box h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.gluko-form-group {
  margin-bottom: 1.5rem;
}

.gluko-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.gluko-form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #e1e8f0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.gluko-form-input:focus {
  border-color: var(--pulse-accent-vibrant);
}

.gluko-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 1rem;
}

.gluko-checkbox-label input {
  margin-top: 0.2rem;
}

.gluko-cta-submit {
  width: 100%;
  padding: 1rem;
  border: none;
  background: var(--pulse-grad-sunset);
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  margin-top: 2rem;
  transition: transform 0.2s;
}

.gluko-cta-submit:hover {
  transform: scale(1.02);
}

/* Info Cards for Reserve */
.gluko-cards-info {
  background: var(--pulse-bg-secondary);
  padding: var(--pulse-padding-normal) 8vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.gluko-info-card {
  background: var(--pulse-bg-primary);
  padding: 2.5rem;
  border-radius: var(--pulse-radius-soft);
  box-shadow: var(--pulse-shadow-raised);
  border-left: 5px solid var(--pulse-accent-vibrant);
}

.gluko-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.gluko-info-card p {
  color: var(--pulse-text-muted);
  margin-bottom: 1.5rem;
}

.gluko-info-list {
  list-style: none;
}

.gluko-info-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.gluko-info-list-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pulse-accent-fresh);
  display: inline-block;
}

/* FAQ Strip */
.gluko-faq-strip {
  background: var(--pulse-bg-primary);
  padding: var(--pulse-padding-normal) 8vw;
}

.gluko-faq-strip h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.gluko-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.gluko-faq-item {
  background: var(--pulse-bg-secondary);
  margin-bottom: 1.5rem;
  border-radius: var(--pulse-radius-soft);
  overflow: hidden;
}

.gluko-faq-question {
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gluko-faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--pulse-text-muted);
}

/* --- FOOTER BAND --- */
.active-footer-band {
  background: var(--pulse-bg-secondary);
  color: var(--pulse-text-light);
  padding: 5rem 8vw 2rem 8vw;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.active-footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.active-footer-brand-info {
  flex: 1 1 350px;
}

.active-footer-brand-info p {
  color: var(--pulse-text-muted);
  margin-top: 1rem;
}

.active-footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.active-footer-links-col a:hover {
  color: var(--pulse-accent-bright);
}

.active-footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--pulse-text-muted);
  text-align: center;
}

.active-footer-copy {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.6;
}

/* --- COOKIE CONSENT BANNER --- */
.gluko-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--pulse-bg-secondary);
  border-top: 3px solid var(--pulse-accent-fresh);
  padding: 1.5rem 8vw;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.4);
}

.gluko-cookie-bar.is-hidden {
  display: none;
}

.gluko-cookie-text {
  font-size: 0.95rem;
  color: var(--pulse-text-light);
}

.gluko-cookie-actions {
  display: flex;
  gap: 1rem;
}

.gluko-cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--pulse-radius-soft);
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.gluko-cookie-btn-accept {
  background: var(--pulse-accent-fresh);
  color: var(--pulse-text-dark);
}

.gluko-cookie-btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pulse-text-light);
}

/* --- LEGAL PAGES STYLE --- */
.gluko-legal-markdown {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--pulse-padding-normal) 4vw;
}

.gluko-legal-markdown h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--pulse-accent-bright);
}

.gluko-legal-markdown h2 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--pulse-text-light);
}

.gluko-legal-markdown p {
  color: var(--pulse-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
  .gluko-feature-strip-item {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .gluko-split-block {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .gluko-cookie-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .gluko-cookie-actions {
    justify-content: center;
  }
  
  .active-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--pulse-bg-secondary);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: var(--pulse-shadow-deep);
  }
  
  .active-nav-links.is-open {
    display: flex;
  }
  
  .active-burger-icon {
    display: flex;
  }
  
  .active-burger-trigger:checked ~ .active-burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .active-burger-trigger:checked ~ .active-burger-icon span:nth-child(2) {
    opacity: 0;
  }
  
  .active-burger-trigger:checked ~ .active-burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .active-burger-trigger:checked ~ .active-nav-links {
    display: flex;
  }
}