/* Base reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
:root{
  --bg:#ffffff;
  --text:#222222;
  --muted:#555555;
  --border:#eaeaea;
  --card:#fafafa;
  --accent:#0b7bd4; /* Nordic cool blue */
  --shadow: 0 8px 28px rgba(0,0,0,0.08);
}
body { font-family: 'Helvetica Neue', Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.5; }

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ---------------------------------- */
/* HERO SECTION (Background Image Only) */
/* ---------------------------------- */
.hero { 
  position: relative;
  min-height: 420px;
  padding: 0;
  background-image: 
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    url('/wp-content/uploads/2025/11/Gemini_Generated_Image_r66xljr66xljr66x.webp');
  background-size: cover;
  background-position: center;
}

/* ---------------------------------- */
/* INTRO CONTENT (Title, Tagline & Text) */
/* ---------------------------------- */
.intro-content { 
    padding: 60px 0 50px; 
    background: var(--bg);
}

.main-title { 
  font-size: clamp(2.2rem, 5vw, 3.5rem); 
  font-weight: 800; 
  letter-spacing: -0.5px; 
  margin-bottom: 16px;
  color: var(--text);
  text-align: center;
}

.intro-content .tagline {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
}

.intro-text p {
    font-size: 1.1rem; 
    color: var(--text);
    margin-bottom: 18px; 
    line-height: 1.7;
    text-align: left;
}


/* ---------------------------------- */
/* MEMBER CONTENT (List of Benefits) */
/* ---------------------------------- */
.member-content { 
    padding: 50px 0 60px;
    background: #fafafa;
}

.member-content h2 { 
    font-size: 2rem; 
    font-weight: 700;
    margin-bottom: 35px; 
    text-align: center;
    color: var(--text);
}

.member-list { 
    list-style: none; 
    display: grid; 
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.member-item { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    background: #fff; 
    border: 1px solid var(--border); 
    border-radius: 8px;
    padding: 18px 20px;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.member-item:hover { 
    border-color: var(--accent); 
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(11,123,212,0.12);
}

.icon { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 40px;
    height: 40px; 
    border-radius: 8px; 
    background: #e8f4fd;
    flex-shrink: 0;
}

.icon-svg { 
    width: 20px; 
    height: 20px; 
    stroke: var(--accent); 
    fill: none; 
    stroke-width: 2;
}

.item-text { 
  font-size: 1.05rem; 
  color: var(--text);
  font-weight: 500;
}


/* ---------------------------------- */
/* PRODUCTS SECTION */
/* ---------------------------------- */
.products { 
  padding: 60px 0 80px; 
  background: var(--bg);
}

.section-title { 
    font-size: 2rem;
    font-weight: 700; 
    margin-bottom: 40px; 
    text-align: center;
    color: var(--text);
}

.product-grid { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 24px; 
}

.product-card { 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  overflow: hidden; 
  background: #fff; 
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); 
  border-color: var(--accent); 
}

.product-image { 
  aspect-ratio: 4/3; 
  background: #f8f8f8; 
  position: relative; 
  overflow: hidden; 
}

.product-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

.product-title { 
  font-size: 1rem; 
  font-weight: 600; 
  padding: 16px 18px; 
  text-align: center;
  color: var(--text);
}

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 16px 0; color: #666; background: #fafafa; }

/* Responsive */
@media (max-width: 1024px) { 
    .product-grid { grid-template-columns: repeat(3, 1fr); } 
    .main-title { font-size: 2.5rem; }
}
@media (max-width: 640px) { 
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero { min-height: 320px; }
  .main-title { font-size: 2rem; }
  .intro-content { padding: 40px 0 35px; }
  .intro-content .tagline { font-size: 1.1rem; margin-bottom: 30px; }
  .intro-text p { font-size: 1rem; }
  .member-content { padding: 40px 0 45px; }
  .member-content h2 { font-size: 1.6rem; margin-bottom: 25px; }
  .section-title { font-size: 1.6rem; margin-bottom: 30px; }
  .products { padding: 40px 0 60px; }
  .member-item { padding: 14px 16px; }
}