.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}


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

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: #1b1b1b;
}

header {
  background-color: #3e2c1c; /* dark brown */
  color: #fefefe;
  padding: 20px 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #f3f3f3;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo a {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  color: #4F622E;
  display: flex;
  align-items: center;
}

.logo a img{
  width: 100px;
  padding-right: 20px;
}

.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.main-nav a:focus,
.main-nav a:hover {
  outline: 2px solid #b03a2e;
  color: #b03a2e;
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
  font-size: 3rem;
  color: #C3D094; /* yellow */
}

.hero-text p {
  font-size: 1.5rem;
  color: #ffffff;
}


#about, #menu, #gallery {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

#about{
  height: 300px;
  padding: 80px 0;
}

h2 {
  margin-bottom: 20px;
  color: #4F622E; /* green */
  text-transform: uppercase;
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

.fullwidth-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

footer {
  text-align: center;
  background-color: #3e2c1c;
  color: white;
  padding: 20px 0;
  margin-top: 40px;
}

/* Apply to all images globally */
img {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional: Set carousel images to full width */
.carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-images{
  height: 450px;
}

.carousel-image {
  width: 100%;
  height: auto;
  border-radius: 0; /* Remove if you want edge-to-edge */
}

.carousel-control {
  background-color: #FBF9F5; /* yellow */
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin: 20px;
  width: 100px;
}

.carousel-control:focus {
  outline: 3px solid #4F622E; /* green outline when focused */
}


/* Optional: If gallery images should stretch too */
.gallery {
  display: grid;
  grid-template-columns: 1fr; /* One per row */
  gap: 20px;
  margin: 0 auto;
}

.gallery-grid {
  display: flex;
  width: 100%;
  gap: 10px;
  height: 600px; /* Total height of the gallery area */
  margin-top: 30px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.small-column {
  width: 20%;
}

.large-column {
  width: 40%;
}

/* Stretch image to fill container without distortion */
.gallery-column img {
  width: 100%;
  height: 100%;
  flex: 1;
  object-fit: cover;
  display: block;
}


.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.menu-section {
  background: #fff;
  padding: 60px 20px;
  color: #333;
}

.menu-section .container h2{
  text-align: center;
}

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

.intro {
  text-align: center;
  font-style: italic;
  margin-bottom: 40px;
}

.menu-category {
  margin-bottom: 40px;
  text-align: left;
}

.menu-category h3 {
  font-size: 1.75rem;
  color: #EABA4A;
  margin-bottom: 10px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

.menu-category ul {
  list-style-type: none;
  padding-left: 0;
}

.menu-category li {
  padding: 8px 0;
  border-bottom: 1px dotted #ccc;
}

.note {
  font-size: 0.9rem;
  text-align: center;
  color: #777;
  margin-top: 30px;
}
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  text-align: center;
}

.contact-item {
  color: #ddd;
  font-size: 1rem;
}

.contact-item a {
  color: #FBF9F5;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

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

.social-links {
  margin-bottom: 10px;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
}

.social-links img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #FBF9F5;
}


@media (max-width: 768px) {
  .gallery-grid {
    flex-direction: column;
  }
  .gallery-column {
    width: 100%;
  }
}

@media (max-width: 468px) {
  .site-header {
    flex-direction: column;
  }

  .carousel{
    height: 250px;
  }

  .carousel-control{
    position: relative;
    top: -80px;
  }

  .carousel-images{
    height: auto;
  }

  #gallery{
    padding-top: 0;
    min-height: 1600px;
  }

  .footer-content{
    flex-direction: column;
  }

  .menu-section{
    padding: 30px 20px;
  }
}