/* GlideForge theme – bold design & animations */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --bg-dark: #0c0c14;
  --bg-card: rgba(255, 255, 255, 0.03);
  --accent-teal: #14b8a6;
  --accent-amber: #f59e0b;
  --text-primary: #e2e8f0;
  --text-muted: #94a3b8;
  --border-glow: rgba(20, 184, 166, 0.4);
}

/* === WHITE.HTML (main) overrides === */
body {
  font-family: 'Outfit', 'Open_regular', Arial, sans-serif !important;
  color: var(--text-primary) !important;
  background: linear-gradient(160deg, #0c0c14 0%, #1e1b2e 40%, #0f172a 100%) !important;
  min-height: 100vh;
}

body center {
  display: block;
  padding: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--accent-teal);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-glow);
  animation: fadeIn 0.8s ease-out;
}

.main {
  background-image: none !important;
  background: transparent !important;
  padding-top: 2rem !important;
}

.main .container {
  max-width: 720px;
  margin: 0 auto;
}

.main__left {
  max-width: 100% !important;
  padding: 0 20px !important;
}

.main__title {
  font-family: 'Outfit', 'Open_bold', sans-serif !important;
  font-size: clamp(1.75rem, 4vw, 2.2rem) !important;
  color: var(--text-primary) !important;
  margin: 20px 0 32px !important;
  line-height: 1.4 !important;
  animation: fadeInUp 0.9s ease-out;
}

.main__subtitle {
  font-family: 'Outfit', 'Open_bold', sans-serif !important;
  font-size: 1.35rem !important;
  color: var(--accent-teal) !important;
  margin-bottom: 16px !important;
  padding-left: 12px;
  border-left: 4px solid var(--accent-teal);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.main__subtitle.reveal {
  opacity: 1;
  transform: translateY(0);
}

.main__text {
  color: var(--text-muted) !important;
  line-height: 1.75 !important;
  margin-bottom: 18px !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.main__text.reveal {
  opacity: 1;
  transform: translateY(0);
}

.main__image {
  margin: 28px 0 !important;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.main__image.reveal {
  opacity: 1;
  transform: translateY(0);
}

.main__image img {
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.main__image:hover img {
  transform: scale(1.02);
}

.main__list {
  margin-bottom: 24px !important;
}

.main__item {
  color: var(--text-muted) !important;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}

.main__item.reveal {
  opacity: 1;
  transform: translateX(0);
}

.main__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-teal);
}

a {
  color: var(--accent-teal) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: var(--accent-amber) !important;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

/* Circle product block */
.circle_wrap {
  padding-top: 120px !important;
  margin-bottom: 60px !important;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.circle_wrap.reveal {
  opacity: 1;
  transform: scale(1);
}

.circle {
  border: 2px solid var(--border-glow) !important;
  box-shadow: 0 0 40px rgba(20, 184, 166, 0.2);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.circle:hover {
  box-shadow: 0 0 60px rgba(20, 184, 166, 0.35);
  transform: scale(1.02);
}

.circle_inner {
  background: linear-gradient(145deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%) !important;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3) !important;
}

.circle_text-inner::before {
  background: var(--bg-dark) !important;
  border: 1px solid var(--accent-teal);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.3) !important;
}

.circle_text b {
  color: var(--accent-teal);
}

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

/* CTA button in content */
.btn,
.submitButton,
.comments__btn {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%) !important;
  color: #0c0c14 !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 28px !important;
  font-size: 1.1rem !important;
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.4) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.btn:hover,
.submitButton:hover,
.comments__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(20, 184, 166, 0.5) !important;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
  color: var(--text-muted) !important;
  padding: 32px 20px !important;
  margin-top: 48px;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.footer a {
  color: var(--accent-teal) !important;
}

.footer a:hover {
  color: var(--accent-amber) !important;
}

/* Chart block */
.chart {
  border-color: var(--border-glow) !important;
  border-radius: 12px;
  overflow: hidden;
}

.chart article div {
  background: linear-gradient(180deg, #0d9488, #14b8a6) !important;
  border-radius: 8px 8px 0 0;
  transition: transform 0.3s ease;
}

.chart article:hover div {
  transform: scaleY(1.05);
  transform-origin: bottom;
}

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

/* === CONTACT / POLICY / DELIVERY overrides === */
.u-body {
  background: linear-gradient(160deg, #0c0c14 0%, #1e1b2e 50%, #0f172a 100%) !important;
  color: var(--text-primary) !important;
  font-family: 'Outfit', Arial, sans-serif !important;
}

.u-header,
.u-palette-5-light-3 {
  background: rgba(15, 23, 42, 0.9) !important;
  border-bottom: 1px solid var(--border-glow) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
}

.u-footer,
.u-black {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
  color: var(--text-muted) !important;
  border-top: 1px solid rgba(20, 184, 166, 0.2) !important;
}

.u-footer a {
  color: var(--accent-teal) !important;
  transition: color 0.2s ease;
}

.u-footer a:hover {
  color: var(--accent-amber) !important;
}

.u-section-1 .u-sheet-1 {
  color: var(--text-primary);
}

.u-text-1,
.u-large-text,
.u-text-variant {
  color: var(--text-primary) !important;
}

.u-text-2,
.u-text-default.u-text-1 {
  color: var(--text-muted) !important;
}

.u-text-2 a,
.u-text-default.u-text-1 a {
  color: var(--accent-teal) !important;
}

.u-text-2 a:hover,
.u-text-default.u-text-1 a:hover {
  color: var(--accent-amber) !important;
}

.u-logo.u-image-1 {
  filter: brightness(1.1);
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal on scroll – slight delay for staggered effect */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}
