/*
Theme Name: Main Samachar Coming Soon
Theme URI: https://mainsamachar.com/
Author: Main Samachar
Description: Minimal coming-soon landing page matching the supplied Main Samachar design.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: mainsamachar
*/

:root {
  --red: #a90000;
  --red-dark: #950000;
  --ink: #202428;
  --muted: #686868;
  --page: #f4f6f6;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.98) 0 22%, rgba(255,255,255,.58) 33%, rgba(244,246,246,0) 58%),
    var(--page);
  color: var(--ink);
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", Arial, sans-serif;
}

.site-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 32px 20px;
}

.splash {
  width: min(100%, 760px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nepali-label {
  width: min(74%, 565px);
  min-height: 118px;
  padding: 12px 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  border-radius: 11px;
  font-family: "Noto Serif Devanagari", "Nirmala UI", "Mangal", serif;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1px;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}

.logo-disc {
  width: min(64vw, 425px);
  height: min(64vw, 425px);
  margin-top: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 30px rgba(0,0,0,.08),
    0 2px 5px rgba(0,0,0,.04);
  overflow: hidden;
}

.logo-disc img {
  width: 83%;
  height: auto;
  display: block;
  object-fit: contain;
}

.features {
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: #666;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: block;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.tagline {
  margin: 25px 0 0;
  font-size: clamp(24px, 3.6vw, 37px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #22272b;
}

.english-pill {
  margin-top: 27px;
  padding: 8px 20px 10px;
  border-radius: 14px;
  background: #252b2f;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 2vw, 21px);
  line-height: 1.25;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

@media (max-width: 600px) {
  .site-page { padding: 22px 16px; }

  .nepali-label {
    width: min(86vw, 430px);
    min-height: 82px;
    padding: 8px 22px 14px;
    border-radius: 9px;
    font-size: clamp(40px, 12vw, 58px);
  }

  .logo-disc {
    margin-top: 28px;
    width: min(78vw, 360px);
    height: min(78vw, 360px);
  }

  .features {
    margin-top: 34px;
    gap: 25px;
  }

  .feature-icon {
    width: 43px;
    height: 43px;
  }

  .tagline {
    margin-top: 19px;
    font-size: clamp(20px, 6vw, 28px);
  }

  .english-pill {
    margin-top: 19px;
    padding: 7px 14px 9px;
    border-radius: 11px;
    font-size: 14px;
  }
}
