/* Alpine Matcha Theme Colors - Updated */
:root {
  --theme-primary: #70892e;
  --background: #f5f2e8;
  --text-primary: #3d4a1d;
  --text-secondary: #9eb27c;
  --text-tertiary: #bfc5ba;
  --text-dark: #2c2c2c;
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
  background-color: var(--background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}


.alpine-logo {
  max-width: clamp(180px, 60vw, 325px);
  height: auto;
  margin-bottom: 2rem;
}

.headline {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.subheadline {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.cta-button {
  background-color: var(--theme-primary);
  color: var(--background);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: var(--text-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(158, 178, 124, 0.3);
}

/* Section Styles */
.section {
  padding: 4rem 2rem;
}

.hero-section {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.story-section {
  padding: 4rem 2rem;
}

.menu-section {
  padding: 2rem 2rem;
}

.footer-section {
  padding: 1rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.story-section .section-title {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


/* Sub-section headings inside story/menu/etc. */
.sub-section-title {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.social-section .section-intro,
.social-section p:first-of-type {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  color: var(--theme-primary);
  align-items: center;
}

.story-text p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.45;
}


/* UPDATED: Rule for the story section logo */
.story-section-logo {
  display: block;
  width: auto;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

/* Menu Section */
.menu-grid {
    display: grid;
    gap: 2rem;
    align-items: stretch;
    justify-content: center; /* Center the grid items within the container */
    grid-template-columns: repeat(1, minmax(260px, 1fr)); /* Default to one column on small screens */
}

@media (min-width: 640px) { /* On small screens (sm) and up, use two columns */
    .menu-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }
}

@media (min-width: 1024px) { /* On large screens (lg) and up, use three columns */
    .menu-grid {
        grid-template-columns: repeat(3, minmax(260px, 1fr));
    }
}

.menu-item {
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 6px 18px rgba(44, 58, 28, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
}

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(44, 58, 28, 0.12);
}

.menu-item-title {
    font-weight: 600;
    color: var(--theme-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.menu-item-description {
    line-height: 1.5;
}

/* Location Section */
.location-card {
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.location-pin {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  /* Ensure the SVG uses the theme color. Many SVGs use currentColor or stroke that can inherit this. */
  color: var(--theme-primary);
  stroke: var(--theme-primary);
  fill: var(--theme-primary);
}

/* If child shapes use stroke="currentColor" or fill="currentColor" they will inherit the color above.
   Target common child elements to be safe. */
.location-pin path,
.location-pin circle,
.location-pin polygon {
  stroke: currentColor !important;
  fill: none !important;
}

.location-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-hours {
  font-size: 1.5rem;
  color: var(--theme-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.location-address {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.location-hours2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--theme-primary);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.clock-icon {
  width: 20px;
  height: 20px;
  fill: var(--theme-primary);
}

.location-note {
  font-size: 0.875rem;
}

/* Social Section */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.social-icon {
  width: 32px;
  height: 32px;
  fill: var(--theme-primary) !important;
  stroke: var(--theme-primary) !important;
  color: var(--theme-primary) !important;
  transition: all 0.3s ease;
}

.social-icon:hover {
  fill: var(--theme-dark) !important;
  stroke: var(--theme-dark) !important;
  color: var(--theme-dark) !important;
  transform: scale(1.1);
}

.social-icons a {
  color: var(--theme-primary) !important;
  text-decoration: none;
}

.social-icons a:visited {
  color: var(--theme-primary) !important;
}

.social-icons a:hover {
  color: var(--theme-dark) !important;
}

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

a:visited {
  color: inherit;
}

.footer-nav a {
  text-decoration: none !important;
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--text-tertiary);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  
}

.feature-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(44, 58, 28, 0.12);
}

.feature-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 1rem;
  /* Match social icons */
  fill: var(--theme-primary);
  stroke: var(--theme-primary);
  color: var(--theme-primary);
  transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

/* Hover behavior: icon scales and switches to the dark text color
   when hovering the icon itself or the containing card */
.feature-icon:hover,
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  fill: var(--text-dark);
  stroke: var(--text-dark);
  color: var(--text-dark);
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-description {
  font-size: 0.875rem;
  color: var(--theme-primary);
}

/* Footer */
.footer-content {
  text-align: center;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-contact {
  margin-bottom: 1rem;
  color: var(--theme-primary);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Responsive Design */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .headline {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }



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

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .social-icons {
    gap: 1rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}



/*
   VIDEO & IMAGE POPUP STYLES - DISABLED

   The modal and popup styles have been commented out to disable
   popup behavior on the site. Re-enable by removing the surrounding
   comment markers below.

   (Original styles for video-modal, popup-modal, modal-content,
    etc. were here.)
*/
