/* germanbymax.com – Main Stylesheet */

:root {
  --blue: #3D5A80;
  --coral: #E07A5F;
  --blue-dark: #2c4160;
  --coral-dark: #c4614a;
  --text: #1a1a1a;
  --text-muted: #555;
  --text-light: #777;
  --bg: #ffffff;
  --bg-light: #f7f9fc;
  --bg-subtle: #f0f4f8;
  --border: #e5e7eb;
  --max-width: 1100px;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--coral);
  color: #fff;
}
.btn-primary:hover { background: var(--coral-dark); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: #fff; }

/* Navigation */
.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: normal;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--coral); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); font-weight: 500; }

.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 14px;
}
.nav-cta:hover { background: var(--coral-dark) !important; color: #fff !important; }

/* Hero */
.hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: normal;
  line-height: 1.25;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
}

.trust-badge::before {
  content: "✓";
  color: var(--coral);
  font-weight: 700;
}

/* Section */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-intro {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(61, 90, 128, 0.1);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
}
.card-link:hover { color: var(--coral-dark); }

/* About / split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: start;
}

.split-photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.split-text h2 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.35;
}

.split-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.check-list li {
  font-size: 16px;
  color: var(--blue);
  font-weight: 600;
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  color: var(--coral);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 24px;
}

.review-stars {
  color: var(--coral);
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}

.review-source {
  font-size: 12px;
  color: var(--text-light);
  font-weight: normal;
}

/* CTA Band */
.cta-band {
  background: var(--blue);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-band .btn-primary {
  background: var(--coral);
  font-size: 16px;
  padding: 15px 32px;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--bg-light);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 12px;
  max-width: 600px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 24px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--coral);
  border-width: 2px;
}

.pricing-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-savings {
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-family: Georgia, serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand span { color: var(--coral); }

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 28px; }
  .hero { padding: 48px 0; }
  .cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section h2 { font-size: 22px; }
  .trust-badges { gap: 12px; }
  .section { padding: 48px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero-sub { font-size: 15px; }
}
