:root {
  --primary-green: #4caf50;;
  --primary-green-hover: #246350;
  --bg-light: #ffffee;
  --bg-white: #ffffff;
  --text-main: #111827; 
  --text-muted: #4B5563; 
  --text-light: #9CA3AF;
  --border-color: rgba(209, 213, 219, 0.3);

  --font-sans: ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", serif;

  --container-width: 80rem; 
  --radius-lg: 0.5rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --section-padding: 5rem 1.5rem;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #2A7B9B;
  background: linear-gradient(127deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 0.22) 16%, rgba(237, 221, 83, 1) 100%);
}

a {
  color: var(--text-main);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* Utility */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center { text-align: center; }
.italic { font-style: italic; }

.section-title {
  font-size: 2.25rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 4rem;
}

/* Header */
.site-header {
  padding: 1.5rem;
  width: 100%;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.brand-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0F172A;
}

/* Hero Section*/
.hero {
  padding: var(--section-padding);
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.pill-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-white);
  border: 1px solid #E5E7EB;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: "Libre Baskerville", serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-green);
  color: white;
}
.btn-primary:hover {
  background-color: var(--primary-green-hover);
}

.btn-outline {
  background-color: var(--bg-white);
  border: 1px solid #D1D5DB;
  color: var(--text-main);
}
.btn-outline:hover {
  background-color: #F9FAFB;
}

/* How It Works Section */
.how-it-works {
  padding: var(--section-padding);
  border-top: 1px solid var(--border-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Video Effect Logic */
.step-card-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #E5E7EB;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: visible;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.step-card-video-container:hover {
  transform: scale(1.1);
  z-index: 30;
}

.step-card-video-container img {
  border-radius: 4px; 
}

tent {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-desc {
  color: var(--text-muted);
}

/* Features Grid */
.features-section {
  padding: var(--section-padding);
  border-top: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.feature-card {
  background: #ffffee;
  padding: 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon-circle {
  width: 3rem;
  height: 3rem;
  background-color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

/* Restaurant Section */
.restaurant-section {
  padding: var(--section-padding);
  background-color: var(--primary-green);
  border-top: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.restaurant-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.restaurant-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.restaurant-section h {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.restaurant-desc {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin: 0 auto 2rem auto;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.glass-pill {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-xl);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  border-top: 1px solid var(--border-color);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-card {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s;
}

.team-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.team-card a {
  display: inline-block;
  width: 100%;
  align-items: center;
  margin-top: .5em
}

.linkedin-icon {
  width: 24px;
  height: 24px;
  margin-left: auto;
  margin-right: auto;
}


.team-img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  object-fit: cover;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-muted);
  font-style: italic;
}

/* Call To Action Section */
.cta-section {
  padding: var(--section-padding);
  background-color: var(--primary-green);
  border-top: 1px solid var(--border-color);
}

.cta-card {
  background-image: linear-gradient(to bottom right, #f9fafb, #ffffff);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
  .restaurant-title { font-size: 3rem; }
  .cta-section { padding-top: 8rem; padding-bottom: 8rem; }
}

.icon-svg, 
.icon-large { 
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-large { 
  width: 1.5rem; 
  height: 1.5rem; 
}

.site-footer {
  padding: 2rem 1.5rem;
  background-color: var(--primary-green);
  border-top: 1px solid var(--border-color);
}
.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight:bold;
}
.site-footer .footer-links {
  display: flex;
  gap: 1.5rem;
}
.site-footer .footer-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight:bold
}

.privacy-policy {
  max-width: 100ch;
  margin: 2rem auto;
  padding: 0 1rem;
  color: var(--text-main);
  line-height: 1.6;
}

.policy-text {
  margin-bottom: 1.5rem;
}

.subsection-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-section {
  padding: var(--section-padding);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.contact-box {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-email {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.2;
}

.contact-email:hover {
  color: var(--primary-green-hover);
  text-decoration: underline;
}

