/* Gez-Gez Website — Shared Styles */

:root {
  --forest: #0F3D2E;
  --forest-light: #1a5c44;
  --green: #2F8F52;
  --accent: #E5A13A;
  --background: #FFF8EA;
  --white: #FFFFFF;
  --text: #1C1C1C;
  --muted: #6F756F;
  --border: #E8E4DA;
  --surface: #F2EDE0;
  --coral: #B94242;
  --radius: 16px;
  --radius-sm: 8px;
  --max-width: 960px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--forest);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ── Layout ──────────────────────────────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ──────────────────────────────────────────────────────── */

.site-header {
  background-color: var(--forest);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}

.site-logo .logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
}

.site-logo .logo-tagline {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-logo-inner {
  display: flex;
  flex-direction: column;
}

.site-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  text-decoration: none;
}

/* ── Hero ──────────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-light) 60%, var(--green) 100%);
  color: var(--white);
  padding: 80px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.55;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--forest);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(229,161,58,0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(229,161,58,0.45);
  text-decoration: none;
  color: var(--forest);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.15s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  text-decoration: none;
  color: var(--white);
}

.coming-soon-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* ── Section ──────────────────────────────────────────────────────── */

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--surface);
}

.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 48px;
}

/* ── Feature Grid ──────────────────────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,61,46,0.1);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 500;
}

/* ── Content Pages ──────────────────────────────────────────────────── */

.page-header {
  background: var(--forest);
  color: var(--white);
  padding: 56px 0 48px;
}

.page-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
}

.page-content {
  padding: 56px 0 80px;
  max-width: 720px;
}

.page-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--forest);
  margin-top: 40px;
  margin-bottom: 14px;
}

.page-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  margin-top: 24px;
  margin-bottom: 10px;
}

.page-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
}

.page-content ul, .page-content ol {
  margin: 0 0 16px 24px;
}

.page-content li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 6px;
}

.page-content strong {
  font-weight: 700;
  color: var(--forest);
}

.page-content a {
  color: var(--green);
  font-weight: 600;
}

.last-updated {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────────────── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Deletion/Support ──────────────────────────────────────────────────── */

.action-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 32px;
}

.action-card h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 14px;
}

.action-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 12px;
}

.action-card ol {
  margin: 0 0 24px 24px;
}

.action-card li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: var(--text);
}

.mailto-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 8px;
}

.mailto-btn:hover {
  background: var(--forest-light);
  text-decoration: none;
  color: var(--white);
}

.warning-box {
  background: #FEF9EE;
  border: 1.5px solid #F0C04A;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: #7A5A00;
  line-height: 1.6;
}

.danger-list li {
  color: var(--coral);
  font-weight: 600;
}

/* ── Contact info ──────────────────────────────────────────────────── */

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.contact-row .contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-row .contact-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
}

/* ── Footer ──────────────────────────────────────────────────────── */

.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

/* ── Responsive ──────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .action-card {
    padding: 24px;
  }

  .page-content {
    padding: 40px 0 60px;
  }
}
