/* ==========================================================
   GauVeg Website V4
   Premium Indian organic editorial approach
   ========================================================== */

:root {
  --cream: #f7f2e6;
  --cream-2: #fffdf8;
  --warm: #efe4cc;
  --green: #1e4a37;
  --green-2: #123d29;
  --green-3: #6e8c6a;
  --gold: #c59d4c;
  --gold-2: #d9b66b;
  --ink: #233328;
  --muted: #5c6a5f;
  --line: rgba(197, 157, 76, 0.36);
  --shadow: 0 18px 42px rgba(45, 35, 20, 0.14);
  --soft-shadow: 0 8px 24px rgba(45, 35, 20, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(197, 157, 76, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f7f2e6 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    radial-gradient(circle at 10% 0%, rgba(197, 157, 76, 0.09), transparent 25%),
    rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(197, 157, 76, 0.35);
  box-shadow: 0 10px 26px rgba(34, 27, 18, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 60px;
  height: 60px;
}

.brand span {
  display: grid;
}

.brand strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 41px;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.brand small {
  margin-top: 8px;
  color: #2d4e3a;
  font-size: 12px;
  font-weight: 700;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 28px);
  color: var(--green-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.donate-nav {
  justify-self: end;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-2), #1e5b37);
  border: 1px solid var(--gold);
  box-shadow: var(--soft-shadow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.nav-toggle,
.hamburger {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 23px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  filter: saturate(1.08);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #17462f, #235f3c);
  border-color: rgba(197, 157, 76, 0.38);
  box-shadow: var(--soft-shadow);
}

.btn-secondary {
  color: var(--green);
  background: rgba(255, 253, 248, 0.78);
  border-color: var(--gold);
}

/* Hero */

.hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 230, 0.96) 0%, rgba(255, 248, 230, 0.78) 38%, rgba(255, 248, 230, 0.08) 70%),
    linear-gradient(180deg, rgba(30, 74, 55, 0.03), rgba(30, 74, 55, 0.10));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
  padding: 36px 0;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 82px);
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 470px;
  color: #27352a;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.gold-rule {
  position: relative;
  width: 310px;
  height: 18px;
  margin: 18px 0 16px;
}

.gold-rule::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(197, 157, 76, 0.10));
}

.gold-rule span {
  position: absolute;
  left: 50%;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 5px;
  background: var(--cream-2);
  transform: translateX(-50%) rotate(45deg);
}

.gold-rule.slim {
  width: 170px;
  margin: 10px 0 17px;
}

/* The GauVeg Way */

.way-section {
  padding: 36px 0 32px;
  background:
    radial-gradient(circle at center top, rgba(197, 157, 76, 0.09), transparent 30%),
    var(--cream-2);
  border-bottom: 1px solid var(--line);
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 25px;
}

.section-title .line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title h2 {
  font-size: clamp(34px, 4vw, 48px);
  text-align: center;
}

.way-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.way-grid article {
  min-height: 165px;
  padding: 8px 28px 10px;
  text-align: center;
  border-right: 1px solid rgba(197, 157, 76, 0.35);
}

.way-grid article:last-child {
  border-right: 0;
}

.way-grid img {
  width: 78px;
  height: 78px;
  margin: 0 auto 10px;
}

.way-grid h3 {
  margin-bottom: 6px;
  font-size: 24px;
}

.way-grid p {
  color: #3f4b3e;
  font-size: 14px;
}

/* Spiritual */

.panel-section {
  border-bottom: 1px solid var(--line);
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: stretch;
}

.image-panel {
  min-height: 300px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 330px;
  object-fit: cover;
}

.copy-panel {
  padding: 42px clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at right, rgba(197, 157, 76, 0.07), transparent 35%),
    var(--cream-2);
}

.eyebrow {
  margin-bottom: 10px;
  color: #a0701d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.copy-panel h2,
.diet-copy h2,
.gau-copy h2,
.support-copy h2,
.contact-form h2 {
  font-size: clamp(30px, 3.8vw, 44px);
}

.copy-panel p,
.gau-copy p,
.support-copy p {
  max-width: 535px;
  color: #425045;
  font-size: 15px;
}

.mini-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 28px;
}

.mini-icons div {
  text-align: center;
  border-right: 1px solid rgba(197, 157, 76, 0.33);
}

.mini-icons div:last-child {
  border-right: 0;
}

.mini-icons img {
  width: 56px;
  height: 56px;
  margin: 0 auto 6px;
}

.mini-icons span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

/* Awareness + diet */

.awareness-diet-zone {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
  border-bottom: 1px solid var(--line);
}

.awareness-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px 0 24px;
}

.awareness-cards article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(197, 157, 76, 0.22);
  border-radius: 13px;
  background: rgba(255, 253, 248, 0.90);
  box-shadow: var(--soft-shadow);
}

.awareness-cards img {
  width: 74px;
  height: 74px;
}

.awareness-cards h3 {
  margin-bottom: 5px;
  font-size: 22px;
}

.awareness-cards p {
  color: #4c584d;
  font-size: 13px;
}

.diet-row {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 10px 0 36px;
}

.diet-image img {
  width: 100%;
  min-height: 290px;
  max-height: 330px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.diet-copy {
  padding-right: 10px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #3e4d43;
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.diet-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 25px;
}

.diet-benefits article {
  min-height: 96px;
  padding: 12px 8px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(197, 157, 76, 0.24);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.90);
  box-shadow: var(--soft-shadow);
}

.diet-benefits img {
  width: 45px;
  height: 45px;
  margin-bottom: 5px;
}

.diet-benefits span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

/* Gau Seva */

.gau-section {
  padding: 34px 0;
  background: linear-gradient(180deg, #eef3e8, #f8f4e9);
  border-bottom: 1px solid var(--line);
}

.gau-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
}

.gau-copy p {
  margin-bottom: 22px;
}

.gau-image img {
  width: 100%;
  min-height: 270px;
  max-height: 305px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

/* Support + Contact */

.support-contact {
  padding: 30px 0;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}

.support-contact-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.support-card,
.contact-form {
  border: 1px solid rgba(197, 157, 76, 0.26);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--soft-shadow);
}

.support-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 24px;
  padding: 20px;
  align-items: center;
}

.support-photo img {
  width: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 12px;
}

.support-copy p {
  margin: 9px 0 18px;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
}

.contact-form h2 {
  font-size: 30px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(66, 80, 69, 0.18);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 88px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(197, 157, 76, 0.78);
  box-shadow: 0 0 0 4px rgba(197, 157, 76, 0.12);
}

.contact-form button {
  width: 100%;
}

.form-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-status.info { color: #9b6a1a; }
.form-status.success { color: #1d6b3f; }
.form-status.error { color: #b2362d; }

/* Footer */

.site-footer {
  background:
    radial-gradient(circle at right bottom, rgba(197, 157, 76, 0.09), transparent 22%),
    #fbf6e9;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.9fr;
  gap: 46px;
  padding: 30px 0 28px;
  border-bottom: 1px solid rgba(197, 157, 76, 0.30);
}

.footer-about,
.footer-links {
  border-right: 1px solid rgba(197, 157, 76, 0.35);
  padding-right: 36px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.footer-brand img {
  width: 66px;
  height: 66px;
}

.footer-brand span {
  display: grid;
}

.footer-brand strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 41px;
  line-height: 0.95;
}

.footer-brand small {
  margin-top: 7px;
  color: #2d4e3a;
  font-size: 13px;
  font-weight: 700;
}

.footer-about p {
  max-width: 430px;
  color: #3e4f43;
  font-size: 14px;
}

.footer-links,
.footer-focus {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-links h3,
.footer-focus h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  position: relative;
  padding-left: 20px;
  color: #2b3d30;
  font-size: 15px;
}

.footer-links a::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 2px;
}

.footer-focus div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #2b3d30;
  font-size: 15px;
}

.footer-focus img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-bottom {
  background: rgba(255, 253, 248, 0.54);
}

.footer-bottom-inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  color: #59665d;
  font-size: 13px;
}

.footer-bottom-inner p:nth-child(2) {
  justify-self: center;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
}

.footer-bottom-inner a {
  justify-self: end;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--green);
  background: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
}

/* Responsive */

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

  .nav-shell {
    grid-template-columns: auto auto;
  }

  .donate-nav {
    display: none;
  }

  .hamburger {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(197, 157, 76, 0.36);
    border-radius: 10px;
    background: #fffdf8;
    cursor: pointer;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
    display: block;
    margin: 3px 0;
    background: var(--green);
    border-radius: 99px;
  }

  .nav-toggle:checked ~ .main-nav {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-self: stretch;
    padding: 0 0 18px;
  }

  .way-grid,
  .split-panel,
  .diet-row,
  .gau-row,
  .support-contact-row,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .way-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(197, 157, 76, 0.24);
  }

  .way-grid article:last-child {
    border-bottom: 0;
  }

  .awareness-cards {
    grid-template-columns: 1fr;
  }

  .footer-about,
  .footer-links {
    border-right: 0;
    border-bottom: 1px solid rgba(197, 157, 76, 0.28);
    padding-right: 0;
    padding-bottom: 24px;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero,
  .hero-content {
    min-height: 520px;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(255, 248, 230, 0.96), rgba(255, 248, 230, 0.70));
  }

  .brand strong {
    font-size: 32px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .mini-icons,
  .diet-benefits,
  .support-card,
  .field-row,
  .footer-bottom-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner,
  .footer-bottom-inner p:nth-child(2),
  .footer-bottom-inner a {
    justify-self: center;
    text-align: center;
  }
}


/* ==========================================================
   VERSION 6 LOGO + IMAGE FIXES
   ----------------------------------------------------------
   Logo is now intentionally separate from text:
   - icon-only image
   - live HTML text for GauVeg and tagline
   This keeps the text bold, sharp, and easy to adjust.
   ========================================================== */

/* Header logo block */
.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.brand > span {
  display: grid !important;
}

.brand img {
  width: 95px !important;
  height: 95px !important;
  max-height: none !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.brand strong {
  display: block !important;
  color: var(--green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 46px !important;
  font-weight: 800 !important;
  line-height: 0.9 !important;
  letter-spacing: -0.045em !important;
}

.brand small {
  display: block !important;
  margin-top: 8px !important;
  color: #254b38 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.nav-shell {
  min-height: 96px !important;
}

/* Footer logo block */
.footer-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 14px !important;
}

.footer-brand > span {
  display: grid !important;
}

.footer-brand img {
  width: 100px !important;
  height: 100px !important;
  max-height: none !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer-brand strong {
  display: block !important;
  color: var(--green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 44px !important;
  font-weight: 800 !important;
  line-height: 0.9 !important;
  letter-spacing: -0.045em !important;
}

.footer-brand small {
  display: block !important;
  margin-top: 8px !important;
  color: #254b38 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

/* Sattvic diet image: use actual photo without awkward cropping */
.diet-image {
  border-radius: 22px !important;
  overflow: hidden !important;
  background: rgba(255, 253, 248, 0.92) !important;
  box-shadow: var(--shadow) !important;
}

.diet-image img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Gau Seva image: show full cow/calf image, avoid cutting off */
.gau-image {
  border-radius: 22px !important;
  overflow: hidden !important;
  background: rgba(255, 253, 248, 0.92) !important;
  box-shadow: var(--shadow) !important;
}

.gau-image img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Mobile logo balance */
@media (max-width: 740px) {
  .brand img {
    width: 62px !important;
    height: 62px !important;
  }

  .brand strong {
    font-size: 34px !important;
  }

  .brand small {
    font-size: 11px !important;
  }

  .nav-shell {
    min-height: 82px !important;
  }

  .footer-brand img {
    width: 64px !important;
    height: 64px !important;
  }

  .footer-brand strong {
    font-size: 34px !important;
  }

  .footer-brand small {
    font-size: 11px !important;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 10px !important;
  }

  .brand img {
    width: 56px !important;
    height: 56px !important;
  }

  .brand strong {
    font-size: 30px !important;
  }

  .brand small {
    font-size: 10px !important;
  }
}
