/*
Theme Name:   Galup
Theme URI:    https://example.com/galup
Author:       WebMorph AI
Author URI:   https://webmorph.ai
Description:  WordPress theme generated by WebMorph AI from 360 LIFEstyle Forum | GalUP Singapore. Detected 8 components across 22 pages.
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  galup
Tags:         ai-generated, responsive, accessibility-ready
*/

/* ──────────────────────────────────────────
   CSS Custom Properties (from source site)
────────────────────────────────────────── */
:root {
  --color-primary:    #8e0c0f;
  --color-secondary:  #d4a373;
  --color-background: #ffffff;
  --color-text:       #1e293b;
  --color-muted:      #64748b;
  --font-heading:     'IBM Plex Sans Local', system-ui, sans-serif;
  --font-body:        'IBM Plex Sans Local', system-ui, sans-serif;
  --radius-sm:        4px;
  --radius-md:        8px;
  --radius-lg:        16px;
  --spacing-section:  5rem;
  --bg-primary: #FFFfff;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f3f4f6;
  --text-primary: #292524;
  --text-secondary: #57534E;
  --text-light: #ffffff;
  --primary: #8e0c0f;
  --primary-hover: #a71115;
  --primary-gradient: linear-gradient(135deg, #8e0c0f 0%, #a71115 100%);
  --primary-glow: rgba(142, 12, 15, 0.15);
  --secondary: #D4A373;
  --secondary-hover: #E4B383;
  --secondary-gradient: linear-gradient(135deg, #D4A373 0%, #B48353 100%);
  --tertiary: #365314;
  --success: #22c55e;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(142, 12, 15, 0.12);
  --glass-shadow: rgba(18, 18, 18, 0.05);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --font-serif: 'Manrope', sans-serif;
  --font-sans: 'Manrope', sans-serif;
  --scroll-progress: 0;
  --total-lines: 1;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color:       var(--color-text);
  background:  var(--color-background);
  line-height: 1.6;
  font-size:   16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color:       var(--color-text);
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.site-nav .nav-logo { font-size: 1.5rem; font-weight: 800; color: var(--color-primary); }

.site-nav ul { list-style: none; display: flex; gap: 2rem; }

.site-nav a { color: var(--color-text); font-weight: 500; transition: color .2s; }
.site-nav a:hover { color: var(--color-primary); text-decoration: none; }

/* Hero Section */
.hero-section {
  padding: var(--spacing-section) 1.5rem;
  background: linear-gradient(135deg, #8e0c0f15 0%, #d4a37310 100%);
  text-align: center;
}

.hero-section h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
.hero-section p  { font-size: 1.2rem; color: var(--color-muted); max-width: 600px; margin: 0 auto 2rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
}
.btn-primary:hover { opacity: .9; text-decoration: none; transform: translateY(-1px); }

/* Sections */
.section { padding: var(--spacing-section) 1.5rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.5rem); text-align: center; margin-bottom: 3rem; }
.section-title span { color: var(--color-primary); }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,.1); transform: translateY(-4px); }
.feature-card h3 { margin-bottom: .75rem; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.testimonial-card p { font-style: italic; color: var(--color-muted); margin-bottom: 1.5rem; }
.testimonial-card cite { font-weight: 700; font-style: normal; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid #e2e8f0;
  text-align: center;
}
.pricing-card.featured {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 12px 40px #8e0c0f40;
}
.pricing-card .price { font-size: 3rem; font-weight: 800; }

/* Contact / Forms */
.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.form-group label { font-weight: 600; font-size: .875rem; display: block; margin-bottom: .375rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px #8e0c0f25;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-grid h4 { color: #fff; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-grid a { color: #94a3b8; transition: color .2s; }
.footer-grid a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 1.5rem; text-align: center; font-size: .875rem; }

/* Responsive */
@media (max-width: 768px) {
  .site-nav ul { display: none; }
  .pricing-card.featured { transform: none; }
}
