/* Base Styles */
:root {
  --primary: #303a18; /* Green - new brand color */
  --secondary: #FFFFFF; /* White */
  --text: #000000; /* Black */
  --text-light: #666666; /* Medium gray */
  --accent: #303a18; /* Green - new brand color */
  --header-font: 'Cormorant Garamond', serif; /* Elegant, heritage-inspired serif font */
  --body-font: 'Montserrat', sans-serif; /* Clean, distinguished sans-serif font */
  --header-height: 80px;
  --header-scroll-height: 60px;
}

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

body {
  font-family: var(--body-font);
  color: var(--text);
  line-height: 1.6;
  background-color: var(--secondary);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--header-font);
  font-weight: 500; /* Slightly bolder for Cormorant Garamond */
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.5px; /* Slight letter spacing for elegance */
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-family: var(--header-font);
  color: var(--text);
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  flex: 1;
  padding: 0 1rem;
  min-width: 300px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent);
  color: var(--secondary);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: var(--body-font);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--text);
  color: var(--secondary);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--text);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--secondary);
}

/* Modern Sticky Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background-color: transparent;
  padding: 20px 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Header hidden state for scroll down */
.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.header-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Logo Styles */
.site-header .logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.site-header .logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 0;
  object-fit: cover;
}

/* Navigation Styles */
.site-header .main-navigation {
  width: auto;
  text-align: center;
}

.site-header .nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.site-header .nav-link {
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  font-weight: 500; /* Medium weight for better visibility */
  transition: opacity 0.3s ease;
}

.site-header .nav-link:hover {
  opacity: 0.7;
}

/* Social Icons */
.site-header .social-icons-vertical {
  position: absolute;
  left: -60px;
  top: -45px; /* Moved up significantly to create more space from navigation */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-header .social-icons-vertical a {
  color: white;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .social-icons-vertical a:hover {
  opacity: 0.7;
}

.site-header .icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.spacer {
  flex: 1;
}

/* Main Content Adjustments */
main {
  min-height: 100vh;
}

main.with-header {
  padding-top: 150px; /* Adjust based on header height */
}

/* Hero Section */
.hero-fullscreen {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center 15%;
  margin-top: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2rem;
  color: var(--secondary);
}

.cafe-locations {
  text-align: center;
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Hero Rows */
.hero-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-row {
  padding-top: 1rem;
  margin-bottom: 3rem;
}

.nav-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4rem;
}

.social-icons-vertical {
  position: absolute;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icons-vertical a {
  color: var(--secondary);
  transition: opacity 0.3s ease;
}

.social-icons-vertical a:hover {
  opacity: 0.7;
}

.icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.logo-container {
  text-align: center;
}

.logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 0;
  object-fit: cover;
  background-color: var(--primary);
}

.main-navigation {
  flex-grow: 0;
  text-align: center;
}

.main-navigation .nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.main-navigation .nav-link {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.main-navigation .nav-link:hover {
  opacity: 0.7;
}

.book-table-btn {
  position: absolute;
  right: 2rem;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.book-table-btn:hover {
  background-color: var(--accent);
  color: var(--secondary);
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Make sure the header has a background on mobile */
  .site-header {
    padding: 1rem 0;
    background-color: var(--primary);
  }

  /* Fix navigation visibility */
  .site-header .main-navigation {
    position: static;
    width: 100%;
    background-color: var(--primary);
    padding: 0.5rem 0;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }

  /* Adjust container for mobile */
  .site-header .container {
    flex-direction: column;
    padding: 0 1rem;
  }

  /* Adjust logo size */
  .site-header .logo-container {
    margin-bottom: 15px;
  }

  .site-header .logo-circle {
    width: 80px;
    height: 80px;
  }

  /* Keep navigation horizontal on mobile */
  .site-header .nav-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
  }

  .site-header .nav-link {
    color: var(--text);
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }

  .site-header .social-icons-vertical {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin: 0.5rem 0;
  }

  .site-header .social-icons-vertical a {
    color: var(--text);
  }

  .site-header .header-nav {
    flex-direction: column;
  }

  /* Home page specific styles */
  body.home-page .site-header {
    position: absolute;
    background-color: transparent !important;
    box-shadow: none;
  }
  
  body.home-page .site-header .container,
  body.home-page .site-header .header-nav,
  body.home-page .site-header .main-navigation,
  body.home-page .site-header .nav-list {
    background-color: transparent !important;
  }

  body.home-page .site-header .nav-link {
    color: white;
    background-color: transparent;
  }
  
  body.home-page .site-header .social-icons-vertical a {
    color: white;
  }
  
  body.home-page .site-header .icon {
    fill: white;
  }

  /* Remove navigation toggle styles */
  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .site-header .nav-list {
    gap: 0.75rem;
  }

  .site-header .nav-link {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }

  .site-header .social-icons-vertical {
    gap: 1.5rem;
  }
}

/* Remove burger menu related styles */
.nav-toggle, .hamburger, .hamburger::before, .hamburger::after {
  display: none !important;
}

/* Adjust main content for sticky header */
main {
  padding-top: var(--header-height);
}

/* Home page doesn't need top padding because the header is absolute positioned */
body.home-page main {
  padding-top: 0;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1200;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--text);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  left: 0;
  transition: transform 0.3s ease;
}

/* For home page, make hamburger white */
body.home-page .hamburger,
body.home-page .hamburger::before,
body.home-page .hamburger::after {
  background-color: var(--secondary);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.toggle-open .hamburger {
  background-color: transparent;
}

.toggle-open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.toggle-open .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.hero {
  background-color: var(--primary);
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Home Page Styles */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.dish-card {
  background-color: var(--secondary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dish-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.dish-info {
  padding: 1.5rem;
}

.dish-name {
  margin-bottom: 0.5rem;
}

.dish-price {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-content {
  padding: 1.5rem;
}

.feature-title {
  margin-bottom: 0.5rem;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-title {
  margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-list {
  list-style-position: inside;
  margin-left: 1rem;
  margin-top: 1rem;
}

.benefit-item {
  margin-bottom: 0.5rem;
}

/* Job Openings */
.job-openings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.job-card {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.job-header {
  margin-bottom: 1rem;
}

.job-type {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.job-description {
  margin-bottom: 1.5rem;
}

.job-requirements-title {
  margin-bottom: 0.5rem;
}

.job-requirements-list {
  list-style-position: inside;
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}

.job-requirement {
  margin-bottom: 0.5rem;
}

/* Process Steps */
.process-steps {
  margin-top: 3rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: var(--secondary);
  font-weight: 600;
  border-radius: 50%;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-title {
  margin-bottom: 0.5rem;
}

/* Investment Table */
.investment-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.investment-table th,
.investment-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.investment-table th {
  font-weight: 600;
  width: 40%;
}

.investment-note {
  font-style: italic;
  color: var(--text-light);
}

/* Contact Info */
.contact-info {
  margin-top: 2rem;
}

.contact-address,
.contact-details,
.contact-hours {
  margin-bottom: 2rem;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  margin-bottom: 0.5rem;
}

/* Form Styles */
.form {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  background-color: var(--secondary);
  font-family: var(--body-font);
  font-size: 1rem;
  border-radius: 4px;
}

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

.has-error .form-input,
.has-error .form-textarea,
.has-error .form-select {
  border-color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* Menu Styles */
.menu-category {
  margin-bottom: 3rem;
}

.menu-category-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  padding: 1.5rem;
  background-color: var(--secondary);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.menu-item-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.menu-item-price {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.menu-item-description {
  color: var(--text-light);
  font-size: 0.9rem;
}

.menu-item-options {
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #eee;
}

.menu-item-option {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

/* Footer Styles */
.footer {
  background-color: var(--primary);
  padding: 4rem 0 2rem;
  color: #FFFFFF;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section {
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.operating-hours p {
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-section p {
  margin-bottom: 0.75rem;
  line-height: 1.5;
  color: #FFFFFF;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-item {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons .icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: #FFFFFF;
  transition: fill 0.3s ease;
}

.social-icons a:hover .icon {
  fill: #FFFFFF;
  opacity: 0.8;
}

.sister-cafe {
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.sister-cafe-intro {
  margin-bottom: 0.2rem;
  opacity: 0.9;
}

.sister-cafe-link {
  color: #FFFFFF;
  font-weight: 500;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.sister-cafe-link:hover {
  opacity: 0.8;
}

.sister-cafe-logo {
  height: 38px; /* Slightly bigger logo */
  width: auto;
  vertical-align: middle;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sister-cafe-name {
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Story Section Updated Styles */
.story-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.story-image.landscape {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-image:hover {
  transform: scale(1.05);
}

/* Adjust copyright to not have its own border since sister-cafe now has one */
.copyright {
  text-align: left;
  font-size: 0.85rem;
  color: #FFFFFF;
  padding-top: 1rem;
  border-top: none;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

/* Lead Text */
.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.reason-card {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.reason-title {
  margin-bottom: 1rem;
}

/* Application Methods */
.application-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.application-method {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.application-method-title {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
  /* Text size adjustments for mobile */
  body {
    font-size: 0.85rem; /* Back to previous size */
  }

  h1 {
    font-size: 2rem; /* Back to previous size */
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.4rem; /* Back to previous size */
  }

  /* Story section specific sizes */
  .story-title {
    font-size: 2.5rem; /* Reduced from 3.5rem */
  }

  .story-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .section-label {
    font-size: 0.8rem;
  }

  .event-title {
    font-size: 2.5rem;
  }

  .event-description {
    font-size: 0.9rem;
  }

  .lead {
    font-size: 0.9rem;
  }

  .btn, .btn-outline {
    font-size: 0.8rem;
    padding: 0.7rem 1.3rem;
  }

  p {
    font-size: 0.85rem;
  }

  .main-navigation .nav-link {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  /* Even smaller text for smaller devices */
  body {
    font-size: 0.8rem; /* Back to previous size */
  }

  h1 {
    font-size: 1.8rem; /* Back to previous size */
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.3rem; /* Back to previous size */
  }

  /* Story section specific sizes */
  .story-title {
    font-size: 2rem; /* Further reduced for smaller screens */
  }

  .story-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .section-label {
    font-size: 0.75rem;
  }

  .event-title {
    font-size: 2rem;
  }

  .event-description {
    font-size: 0.85rem;
  }

  .lead {
    font-size: 0.85rem;
  }

  .btn, .btn-outline {
    font-size: 0.75rem;
    padding: 0.6rem 1.2rem;
  }

  p {
    font-size: 0.8rem;
  }

  .menu-item-title {
    font-size: 0.9rem;
  }

  .menu-item-description {
    font-size: 0.8rem;
  }

  .footer-section {
    font-size: 0.8rem;
  }

  .footer-title {
    font-size: 0.9rem;
  }

  .main-navigation .nav-link {
    font-size: 0.75rem;
  }

  .scroll-cta {
    font-size: 0.75rem;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
}

.scroll-cta {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-family: var(--body-font);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover .scroll-cta {
  opacity: 1;
}

.scroll-arrow {
  width: 1.5rem;
  height: 2.5rem;
  color: var(--text);
  animation: bounce 2.5s infinite;
  opacity: 0.7;
  transition: all 0.3s ease;
  stroke-width: 1.5;
}

.scroll-indicator:hover .scroll-arrow {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}

/* Story Section */
.story-section {
  padding: 6rem 0;
  background-color: var(--secondary);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('/assets/images/story-background.jpeg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.65);
}

.story-grid {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-content {
  text-align: center;
}

.section-label {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-family: var(--body-font);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

/* Story title specific styling to enhance the heritage look */
.story-section h3.story-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-family: var(--header-font);
  color: var(--text);
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1.2;
}

.story-section .story-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.story-section .story-subtitle {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: var(--header-font);
  color: var(--text);
  font-weight: 500;
}

/* Story Section Mobile Styles */
@media (max-width: 768px) {
  .story-section {
    padding: 4rem 0;
  }

  .story-section h3.story-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .story-section .story-subtitle {
    font-size: 2rem;
  }

  .story-section .story-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .story-section h3.story-title {
    font-size: 2rem;
  }

  .story-section .story-subtitle {
    font-size: 1.8rem;
  }

  .story-section .story-text {
    font-size: 1rem;
  }
}

/* Hero Section Scroll Indicator */
.cafe-locations .scroll-indicator {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.cafe-locations .scroll-arrow {
  width: 1.5rem;
  height: 2.5rem;
  color: var(--secondary);
  animation: bounce 2.5s infinite;
  opacity: 0.7;
  transition: all 0.3s ease;
  stroke-width: 1.5;
}

.cafe-locations .scroll-indicator:hover .scroll-arrow {
  opacity: 1;
  transform: scale(1.1);
}

/* Menu Grid Section */
.menu-grid-section {
  padding: 6rem 0;
  background-color: var(--secondary);
}

.menu-grid-section .section-label {
  margin-bottom: 4rem;
}

.text-center {
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 4rem;
}

.menu-item {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: none;
  background-color: var(--secondary); /* Match the background color for the gap */
}

.menu-image-box {
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.menu-image-box:hover {
  transform: scale(1.05);
}

.menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.btn-outline {
  padding: 1rem 2rem;
  border: 2px solid var(--primary);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

/* Responsive Menu Grid */
@media (max-width: 992px) {
  .menu-grid-section {
    padding: 4rem 0;
  }
  
  .menu-grid-section .section-label {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0.5rem;
  }
}

/* Event Section */
.event-section {
  padding: 6rem 0;
  background-color: var(--secondary);
  position: relative;
  background-image: url('/assets/images/story-background.jpeg');
  background-size: cover;
  background-position: center;
}

.event-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 1;
}

.event-section .container {
  position: relative;
  z-index: 2;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2rem;
}

.event-content {
  padding-right: 2rem;
}

.event-title {
  font-size: 3rem;
  font-family: var(--header-font);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.event-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: var(--text);
}

.event-image {
  position: relative;
  height: 100%;
  max-width: 450px;
  margin-left: auto;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Event Section Mobile Styles */
@media (max-width: 992px) {
  .event-grid {
    gap: 3rem;
  }

  .event-content {
    padding-right: 0;
  }

  .event-title {
    font-size: 3rem;
  }

  .event-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .event-section {
    padding: 4rem 0;
  }

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

  .event-content {
    text-align: center;
  }

  .event-title {
    font-size: 2.5rem;
  }

  .event-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .event-image {
    order: -1;
    margin: 0 auto;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .event-title {
    font-size: 2rem;
  }

  .event-description {
    font-size: 1rem;
  }

  .event-image {
    max-width: 300px;
  }
}

/* Reusable Scroll Indicator */
.scroll-indicator {
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.scroll-arrow {
  width: 1.5rem;
  height: 2.5rem;
  color: var(--text);
  animation: bounce 2.5s infinite;
  opacity: 0.7;
  transition: all 0.3s ease;
  stroke-width: 1.5;
}

.scroll-indicator:hover .scroll-arrow {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}

/* Make header on home page transparent */
body.home-page .site-header {
  position: absolute;
  background-color: transparent;
  box-shadow: none;
}

/* Inner pages header styling */
body:not(.home-page) .site-header {
  background-color: var(--secondary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body:not(.home-page) .site-header .nav-link {
  color: var(--primary);
}

body:not(.home-page) .site-header .social-icons-vertical a {
  color: var(--primary);
}

body:not(.home-page) .site-header .icon {
  fill: var(--primary);
}

/* Mobile styles for non-home pages */
@media (max-width: 768px) {
  body:not(.home-page) .site-header {
    background-color: var(--secondary);
  }

  body:not(.home-page) .site-header .main-navigation {
    background-color: var(--secondary);
  }

  body:not(.home-page) .site-header .nav-link {
    color: var(--primary);
  }

  body:not(.home-page) .site-header .social-icons-vertical a {
    color: var(--primary);
  }
}

/* Coming Soon Page */
.coming-soon-container {
  text-align: center;
  padding: 5rem 0;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.coming-soon-title {
  font-size: 3rem;
  font-family: var(--header-font);
  color: var(--text);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .coming-soon-container {
    padding: 3rem 0;
  }
  
  .coming-soon-title {
    font-size: 2.5rem;
  }
}

.story-section .scroll-indicator {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.story-section .scroll-cta {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-family: var(--body-font);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  text-align: center;
}

/* Franchise Section Styles */
.franchise-section {
  padding: 6rem 0;
  background-color: var(--secondary);
  text-align: center;
}

.franchise-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.franchise-title {
  font-size: 3rem;
  font-family: var(--header-font);
  color: var(--text);
  margin: 1.5rem 0;
}

.franchise-description {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.franchise-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.franchise-features .feature {
  padding: 2rem;
  background-color: var(--secondary);
  border: 1px solid var(--primary);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.franchise-features .feature:hover {
  transform: translateY(-5px);
}

.franchise-features h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--header-font);
  color: var(--primary);
  font-weight: 500;
}

.franchise-features p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
}

.franchise-cta {
  margin-top: 2rem;
}

/* Franchise Section Mobile Styles */
@media (max-width: 768px) {
  .franchise-section {
    padding: 4rem 0;
  }

  .franchise-title {
    font-size: 2.5rem;
  }

  .franchise-description {
    font-size: 1.1rem;
  }

  .franchise-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .franchise-features .feature {
    padding: 1.5rem;
  }

  .franchise-features h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .franchise-title {
    font-size: 2rem;
  }

  .franchise-description {
    font-size: 1rem;
  }

  .franchise-features .feature {
    padding: 1.25rem;
  }

  .franchise-features h4 {
    font-size: 1.2rem;
  }
}

/* Menu Modal Styles */
.menu-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem;
}

.modal-content {
  display: block;
  max-width: 90%;
  max-height: 90vh;
  margin: 0 auto;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.menu-item {
  cursor: pointer;
}

.menu-image-box {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.menu-item:hover .menu-image-box {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.highlight {
  font-style: italic;
  color: var(--primary); /* Or any specific color you want to use */
  font-weight: 500; /* Optional: makes the text slightly bolder */
}

.delivery-partners {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.delivery-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 480px) {
  .delivery-logo {
    height: 20px;
  }
} 