/* MBR PROPERTY PORTFOLIO LTD — giper-tofort.shop
   Unique Zigzag + Modern Corporate Blog Style
   Deep navy + gold accent
*/

:root {
  --bg: #F8F9FA;
  --surface: #FFFFFF;
  --text: #0A2540;
  --muted: #5C6B7A;
  --accent: #D4AF37;
  --border: #E2E8F0;
  --shadow: 0 8px 25px rgba(10, 37, 64, 0.08);
  --radius: 10px;
  --max-width: 1200px;
}

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

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

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

/* Header */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { font-size: 22px; font-weight: 700; }
.logo span { color: var(--accent); }

.nav { display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--accent); }

.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* Hero */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: inline-flex;
  background: var(--accent);
  color: #0A2540;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: all .3s;
}

.hero-cta:hover {
  background: #C9A227;
  transform: translateY(-2px);
}

/* Intro */
.intro {
  max-width: 820px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.intro p {
  font-size: 17.5px;
  color: #374151;
  margin-bottom: 1.35em;
}

/* Zigzag Sections + Articles */
.section-header {
  max-width: var(--max-width);
  margin: 0 auto 32px;
  padding: 0 40px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
}

.articles-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all .3s;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.article-card .tag {
  font-size: 12px;
  font-weight: 600;
  background: #FEF3C7;
  color: #92400E;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.article-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
}

.article-card p {
  color: #4B5563;
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.article-card .meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

.article-card .meta a {
  color: var(--accent);
  font-weight: 600;
}

/* Article Page */
.article-page {
  max-width: 780px;
  margin: 60px auto;
  padding: 0 40px;
}

.article-page h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.article-content {
  font-size: 17.5px;
  line-height: 1.8;
}

.article-content p {
  margin-bottom: 1.4em;
}

.back-link {
  display: inline-flex;
  margin-top: 50px;
  color: var(--accent);
  font-weight: 600;
}

/* Form */
.form-section {
  max-width: 620px;
  margin: 60px auto;
  padding: 0 40px;
}

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
}

.contact-form button {
  align-self: flex-start;
  background: var(--accent);
  color: #0A2540;
  border: none;
  padding: 15px 38px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

/* Thank You & Footer */
.thankyou {
  max-width: 680px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.footer {
  background: #0A2540;
  color: #94A3B8;
  padding: 50px 40px 40px;
  font-size: 14px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid #1E3A5F;
  color: #64748B;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; }
  .nav.active { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 36px; }
}