/* ==========================================================================
   วันพระเดย์ (Wanpraday) - Premium Buddhist App Design System
   Font: Google Sans Only
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette inspired by wanphra (1).jpg */
  --bg-gradient: linear-gradient(180deg, #FBF8F2 0%, #F5ECE0 50%, #ECE2D4 100%);
  --hero-bg: radial-gradient(circle at 50% 20%, #FFFBF3 0%, #F6EDDC 50%, #EFE3D0 100%);
  --gold-primary: #D4AF37;
  --gold-dark: #B8860B;
  --gold-amber: #E5A93C;
  --gold-light: #FFF4D9;
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-glow: rgba(229, 169, 60, 0.25);
  
  --text-main: #362920;
  --text-muted: #6E5E52;
  --text-light: #9B8B7E;
  
  --white: #FFFFFF;
  --white-translucent: rgba(255, 255, 255, 0.88);
  --border-gold: rgba(212, 175, 55, 0.25);
  
  --shadow-sm: 0 4px 12px rgba(54, 41, 32, 0.05);
  --shadow-md: 0 10px 30px rgba(184, 134, 11, 0.08);
  --shadow-lg: 0 20px 45px rgba(60, 45, 25, 0.12);
  --shadow-gold: 0 12px 35px rgba(212, 175, 55, 0.3);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  /* Primary Font: Google Sans Only */
  --font-primary: 'Google Sans', sans-serif;
  --font-heading: 'Google Sans', sans-serif;
  --font-body: 'Google Sans', sans-serif;
  --font-content: 'Google Sans', sans-serif;
}

/* Reset & Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.3;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

button, input, select, textarea {
  font-family: var(--font-primary);
}

.text-gold {
  color: var(--gold-dark);
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  transition: all 0.3s ease;
}

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

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

.brand-logo img {
  height: 46px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.3px;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #E5A93C 0%, #B8860B 100%);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #F0B74D 0%, #C89410 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white-translucent);
  color: var(--text-main);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0 80px 0;
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-sun-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 235, 180, 0.6) 0%, rgba(255, 215, 120, 0.2) 40%, rgba(251, 248, 242, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lotus-icon-header {
  width: 48px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Next Wan Phra Card (Hero Featured Widget) */
.next-wanphra-widget {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 250, 243, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
}

.next-wanphra-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E5A93C, #D4AF37, #B8860B);
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.widget-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.moon-phase-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFF0AA, #E5A93C 60%, #B8860B 100%);
  box-shadow: 0 0 16px rgba(229, 169, 60, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.widget-lunar-date {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
}

.widget-solar-date {
  font-size: 0.92rem;
  color: var(--text-light);
}

.countdown-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  margin-top: 12px;
}

.countdown-tag {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.countdown-numbers {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  padding: 4px 10px;
  border-radius: 8px;
  min-width: 44px;
  box-shadow: var(--shadow-sm);
}

.time-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.1;
}

.time-lbl {
  font-size: 0.65rem;
  color: var(--text-light);
}

/* Interactive Phone Showcase */
.phone-showcase-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  width: 320px;
  height: 640px;
  background: #25201A;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(50, 35, 20, 0.25), 0 0 0 1px rgba(212, 175, 55, 0.4);
}

.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 18px;
  background: #25201A;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 20;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #FAF6F0;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Mobile Screen Internal Content */
.app-screen-header {
  padding: 36px 16px 12px 16px;
  background: linear-gradient(180deg, #FBF8F2 0%, #F6EDDC 100%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.app-screen-logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.app-screen-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.app-screen-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
}

.app-screen-body::-webkit-scrollbar {
  width: 4px;
}
.app-screen-body::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

/* App Screen Views */
.tab-content-view {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.app-hero-card {
  background: linear-gradient(135deg, #FFF9EC 0%, #F5E8CE 100%);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid var(--border-gold);
  margin-bottom: 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.08);
}

.buddha-glow-art {
  width: 80px;
  height: 80px;
  margin: 0 auto 8px auto;
  background: radial-gradient(circle, #FFE49E 0%, #E5A93C 70%, transparent 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 0 20px rgba(229, 169, 60, 0.4);
}

.app-quote-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 4px;
}

.app-featured-day {
  background: var(--white);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gold);
  margin-bottom: 12px;
}

.app-day-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.moon-icon-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFF3B3, #E5A93C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.app-day-info {
  flex: 1;
}

.app-day-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.app-day-date {
  font-size: 0.72rem;
  color: var(--text-light);
}

.badge-tag-sm {
  font-size: 0.7rem;
  background: #FFF3D6;
  color: var(--gold-dark);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

/* Phone Bottom Nav Bar */
.phone-bottom-nav {
  height: 58px;
  background: var(--white);
  border-top: 1px solid var(--border-gold);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  position: relative;
  z-index: 10;
}

.nav-item-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 4px 0;
}

.nav-item-btn.active {
  color: var(--gold-dark);
  font-weight: 600;
}

.nav-item-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-btn-fab {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5A93C, #B8860B);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -16px auto 0 auto;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  font-size: 1.3rem;
  font-weight: bold;
}

/* Interactive Tabs Demo Sections */
.sections-wrapper {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px auto;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white-translucent);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
  background: var(--white);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Interactive Web Demo Section */
.demo-section {
  background: linear-gradient(180deg, #F5ECE0 0%, #FAF6F0 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 80px 0;
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.demo-tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--white-translucent);
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.demo-tab-btn:hover,
.demo-tab-btn.active {
  background: linear-gradient(135deg, #E5A93C, #B8860B);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.demo-container-card {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

/* Dhamma Quote Generator Box */
.quote-box-container {
  background: var(--gold-light);
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  position: relative;
}

.quote-text-display {
  font-family: var(--font-content);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.8;
}

.quote-author {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Prayer Reader Demo Tools */
.prayer-tool-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FDFBF7;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  margin-bottom: 20px;
}

.font-size-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  background: var(--white);
  color: var(--text-main);
  font-weight: 600;
  cursor: pointer;
}

.prayer-text-box {
  background: #FAFAF7;
  border-radius: var(--radius-sm);
  padding: 24px;
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid #EFEAE0;
  font-family: var(--font-content);
  line-height: 2;
  font-size: 1.05rem;
  color: var(--text-main);
}

/* Merit Interactive Logger Demo */
.merit-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
}

.input-field:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.merit-list-preview {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.merit-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFDF8;
  border: 1px solid var(--border-gold);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

/* Offline & Privacy Banner */
.privacy-banner {
  background: linear-gradient(135deg, #362920 0%, #241A13 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin: 60px 0;
}

.privacy-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.privacy-content h2 {
  color: #F8E3AD;
  font-size: 2rem;
  margin-bottom: 12px;
}

.privacy-content p {
  color: #D6C9BE;
  font-size: 1.02rem;
  margin-bottom: 24px;
}

.shield-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.shield-icon {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

/* Download CTA Section - Single Google Play Badge Only */
.download-section {
  text-align: center;
  padding: 80px 0;
}

.download-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.store-badge-single {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #1F1914 0%, #362920 100%);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.store-badge-single:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.45);
  background: #000;
}

.store-badge-icon {
  font-size: 2.2rem;
}

.store-badge-text {
  text-align: left;
}

.store-badge-text .sub {
  font-size: 0.8rem;
  color: #DDD;
  display: block;
}

.store-badge-text .title {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  line-height: 1.1;
  color: #FFF;
}

.exclusively-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 600;
  background: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

/* Footer */
.footer {
  background: #2C2018;
  color: #C2B4A7;
  padding: 50px 0 24px 0;
  border-top: 1px solid var(--border-gold);
}

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

.footer-col h4 {
  color: #F3E5AB;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #C2B4A7;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #8C7B6E;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .privacy-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
