﻿:root {
  --bg: #f6efe3;
  --surface: rgba(255, 248, 238, 0.88);
  --surface-strong: #fffaf3;
  --ink: #23160d;
  --muted: #6d5649;
  --line: rgba(76, 51, 35, 0.12);
  --primary: #bd5f2d;
  --primary-dark: #8f431e;
  --secondary: #264f3d;
  --secondary-soft: #d8eadf;
  --highlight: #f3b562;
  --danger: #a83c32;
  --shadow: 0 24px 60px rgba(42, 24, 12, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 211, 153, 0.55), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(77, 142, 112, 0.18), transparent 24%),
    linear-gradient(180deg, #f7e9d1 0%, #f6efe3 42%, #f8f3eb 100%);
}

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

img {
  max-width: 100%;
}

.hero-shell,
.page-top {
  padding: 28px clamp(18px, 3vw, 44px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  color: #fff;
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 14px 28px rgba(143, 67, 30, 0.24);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  border: 1px solid rgba(76, 51, 35, 0.12);
}

.button-block {
  width: 100%;
}

.small-button {
  padding: 10px 16px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.panel,
.summary-card,
.info-card,
.timeline-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(26px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(255, 243, 228, 0.72));
}

.glass,
.panel,
.summary-card,
.info-card,
.timeline-card {
  background: rgba(255, 252, 247, 0.78);
  backdrop-filter: blur(10px);
}

.eyebrow,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 16px;
}

.marathi {
  display: block;
  font-family: "Tiro Devanagari Marathi", serif;
  color: var(--secondary);
}

.english-title {
  display: block;
}

.hero-text,
.page-heading p,
.panel p,
.info-card p,
.timeline-card p,
.summary-card span,
label,
input,
textarea,
select {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats li {
  min-width: 130px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(38, 79, 61, 0.08);
}

.hero-stats strong {
  display: block;
  color: var(--secondary);
  font-size: 1.35rem;
}

.hero-card {
  padding: 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-grid article {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(76, 51, 35, 0.1);
}

.section {
  padding: 26px clamp(18px, 3vw, 44px) 48px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.feature-layout,
.booking-layout,
.admin-grid {
  display: grid;
  gap: 22px;
}

.feature-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.booking-layout {
  grid-template-columns: 1.1fr 0.8fr;
}

.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.booking-form,
.booking-sidebar {
  padding: 24px;
}

.accent-panel {
  background: linear-gradient(145deg, rgba(38, 79, 61, 0.93), rgba(18, 44, 34, 0.92));
  color: #eef8f2;
}

.accent-panel p,
.accent-panel .card-label {
  color: rgba(238, 248, 242, 0.8);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.section-dark {
  background: linear-gradient(180deg, rgba(38, 79, 61, 0.96), rgba(25, 53, 41, 0.98));
  color: #f6f1e8;
}

.section-dark .eyebrow,
.section-dark .info-card p,
.section-dark .info-card h3 {
  color: inherit;
}

.cards-grid,
.booking-showcase {
  display: grid;
  gap: 18px;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.booking-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.timeline-card {
  padding: 24px;
}

.timeline-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: rgba(189, 95, 45, 0.13);
  color: var(--primary);
  font-weight: 800;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 244, 224, 0.94), rgba(255, 232, 210, 0.94));
  color: var(--ink);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 3vw, 44px) 38px;
}

.footer-name {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.compact-header,
.admin-header {
  min-height: auto;
}

.page-heading {
  max-width: 840px;
}

.page-heading h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(76, 51, 35, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.8);
}

textarea {
  resize: vertical;
}

.form-message {
  margin: 12px 0 0;
  min-height: 24px;
  font-weight: 700;
}

.mini-stats {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.mini-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(38, 79, 61, 0.08);
}

.mini-stats strong {
  display: block;
  margin-bottom: 4px;
}

.admin-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.admin-summary-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 16px;
}

.summary-card {
  padding: 18px 20px;
}

.summary-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.section-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.stack-list,
.table-list {
  display: grid;
  gap: 14px;
}

.panel-full {
  grid-column: 1 / -1;
}

.booking-item,
.expense-item,
.empty-state {
  border: 1px solid rgba(76, 51, 35, 0.12);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.booking-item header,
.expense-item header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.chip {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(38, 79, 61, 0.1);
  color: var(--secondary);
}

.expense-item strong,
.booking-item strong {
  color: var(--ink);
}

.muted {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .hero,
  .feature-layout,
  .booking-layout,
  .admin-grid,
  .cards-grid,
  .booking-showcase,
  .admin-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-grid,
  .form-grid,
  .admin-summary-cards {
    grid-template-columns: 1fr;
  }

  .cta-strip,
  .footer,
  .section-bar,
  .booking-item header,
  .expense-item header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .info-card,
  .timeline-card {
    border-radius: 22px;
  }
}


