/* color specifications*-----------------
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prata&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "beanco_font";
  src: url(../fonts/beanco_font-webfont.woff), url(../fonts/beanco_font-webfont.woff2);
}
/* Typography specifications*-----------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: inherit;
}

/* Big headline*-----------------*/
h1 {
  font-family: "Prata", serif;
  font-size: 3.5rem;
  line-height: 4.2rem;
  padding: 0 0 20px 0;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
}

h2 {
  font-family: "Prata", serif;
  font-size: 2.1rem;
  line-height: 3.5rem;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
}

h3 {
  font-family: "Prata", serif;
  font-size: 1.8rem;
  font-weight: 800;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

h6 {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 2.5rem;
}

/* Paragraph-descriptions*-----------------*/
p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 300;
  color: #3e3d41;
}
@media (max-width: 1024px) {
  p {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
}

/* Buttons type*-----------------*/
h5 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 2rem;
}

.section {
  width: 100%;
  padding-block: 100px;
}
@media (max-width: 1024px) {
  .section {
    padding-block: 40px;
  }
}
@media (max-width: 768px) {
  .section {
    padding-block: 20px;
  }
}

.section-big {
  width: 100%;
  padding-block: 250px;
}
@media (max-width: 1024px) {
  .section-big {
    padding-block: 150px;
  }
}
@media (max-width: 768px) {
  .section-big {
    padding-block: 100px;
  }
}

.container {
  padding-inline: 15%;
}
@media (max-width: 1024px) {
  .container {
    padding-inline: 10%;
  }
}
@media (max-width: 768px) {
  .container {
    padding-inline: 5%;
  }
}

/*padding-block is a modern 
  CSS shorthand property used to add padding to the top and bottom 
  of an element.*/
/*padding-inline = left + right
  padding-block  = top + bottom
  margin-inline  = left + right
  margin-block   = top + bottom*/
.section-fullscreen {
  width: 100%;
}

.container-fullscreen {
  padding-inline: 0;
}

#bottom-tight {
  padding-bottom: 0;
}

/* chef Image - Introduction section*/
/* Inner wrapper */
.content-group-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Text Section */
.content-group-inner .introduction {
  width: 50%;
}

.content-group-inner .introduction h1 {
  max-width: 650px;
  color: #ac273f;
  margin-bottom: 1rem;
}

.content-group-inner .introduction p {
  max-width: 550px;
  color: #696060;
  padding-bottom: 8rem;
}

/* Image Section */
.content-group-inner .image-section {
  width: 50%;
  display: flex;
  justify-content: center;
}

.content-group-inner .image-section img {
  max-width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
  .content-group-inner {
    flex-direction: column;
    text-align: center;
  }
  .content-group-inner .introduction,
  .content-group-inner .image-section {
    width: 100%;
  }
  .content-group-inner .introduction h1 {
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .content-group-inner .introduction p {
    margin: auto;
  }
}
@media (max-width: 768px) {
  .content-group-inner .introduction h1 {
    text-align: left;
  }
  .content-group-inner .introduction p {
    text-align: left;
  }
}
/* Image section grid */
.image-grid {
  display: flex;
  height: 100vh; /* adjust as needed */
  gap: 3px;
  padding: 3px 0;
}

/* Left column (big image) */
.left {
  flex: 1; /* takes 50% */
}

/* Right column */
.right {
  flex: 1; /* takes 50% */
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Top row of right column */
.top {
  display: flex;
  flex: 1;
  gap: 3px;
}

.top div {
  flex: 1; /* each half */
  display: flex;
}

.top div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Bottom image of right column */
.bottom {
  flex: 1;
  display: flex;
}

.bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Images style */
.image-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Responsive: make all images equal height */
@media (max-width: 768px) {
  .image-grid {
    display: grid;
    grid-template-columns: 1fr; /* single column */
    grid-auto-rows: 1fr; /* equal height rows */
    gap: 3px;
    height: auto;
  }
  .left, .right, .top, .top div, .bottom {
    flex: none;
    width: 100%;
    height: auto;
    display: contents; /* let grid handle layout */
  }
  .image-grid img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* Ingredients Icon*/
/* INGREDIENTS SECTION */
.ingredients-section {
  text-align: center;
  padding: 80px 5%;
}

.ingredients-section h1 {
  margin: auto;
  max-width: 650px;
}

/* ICON GRID */
.ingredients-icon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
}

/* ICON CARD */
.ingredients-icon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* IMAGE */
.ingredients-icon-content img {
  width: 260px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

/* TEXT */
.ingredients-icon-content p {
  color: grey;
  font-family: "Barlow", sans-serif;
  line-height: 24px;
  font-weight: 400;
  padding-top: 20px;
  font-size: 1.2rem;
}

/* LINE */
.ingredients-icon-content hr {
  width: 60%;
  margin-top: 20px;
}

/* BUTTON */
.ingredients-section button {
  margin-top: 60px;
  padding: 14px 40px;
  border: none;
  background: #ac273f;
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  cursor: pointer;
}

/* ---------------- */
/* MEDIUM SCREEN */
/* ---------------- */
@media (max-width: 1024px) {
  .ingredients-icon {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ---------------- */
/* MOBILE */
/* ---------------- */
@media (max-width: 768px) {
  .ingredients-icon {
    grid-template-columns: 1fr;
  }
  .ingredients-icon-content img {
    width: 220px;
    height: 220px;
  }
}
/* Services Home */
.content-service-home {
  padding-top: 2rem;
}

.content-service-home h1 {
  text-align: center;
  margin: auto;
}

.our-services-icon {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  padding-top: 3rem;
}

.services-group-inner h1 {
  margin: auto;
  text-align: center;
  padding-top: 12rem;
}
.services-group-inner button {
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .services-group-inner h1 {
    padding-top: 5rem;
  }
}
.services-icon-content {
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services-icon-content p {
  color: grey;
  text-align: center;
  font-family: "Barlow", sans-serif;
  line-height: 24px;
  font-weight: 400;
  padding-top: 20px;
  font-size: 1.2rem;
}
.services-icon-content img {
  width: 250px;
  border-radius: 50%;
}
.services-icon-content hr {
  width: 60%;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .services-icon-content {
    margin-bottom: 60px;
  }
}
.content-group-sub h1 {
  max-width: 750px;
  text-align: center;
  margin: auto;
  padding: 4rem 0 0 0;
}

.discription {
  max-width: 900px;
  text-align: center;
  margin: auto;
  padding: 1rem 0 0 0;
}

@media (max-width: 768px) {
  .content-group-sub h1 {
    text-align: left;
  }
  .discription {
    text-align: left;
  }
}
.show-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 equal columns */
  gap: 40px 2%; /* row gap: 40px, column gap: 2% */
  align-items: center;
}

.left, .right {
  width: 100%;
}

.grid-item {
  width: 100%;
  height: auto;
  display: block;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.emoji-img {
  max-width: 200px;
  height: auto;
}

@media (max-width: 768px) {
  .show-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .emoji-img {
    max-width: 80px;
    margin: 0 auto;
  }
  .grid-item {
    width: 100%;
    height: auto;
  }
  .center {
    display: none;
  }
}
.testimonial-section-inner {
  padding-block: 200px;
  padding-inline: 5%;
  text-align: center;
  background-color: rgb(38, 90, 81);
  background: url("../Images/home_page/veg2.jpg") no-repeat center center;
  background-size: cover;
  -o-object-fit: contain;
     object-fit: contain;
  background-blend-mode: multiply;
  margin-bottom: 0;
}

.testimonial-section-inner h1 {
  margin-bottom: 40px;
  margin-top: 0;
  color: white;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  width: 100%;
}

.testimonial {
  background: url("../Images/home_page/plate.svg") no-repeat center center;
  background-size: contain; /* Makes the plate fit nicely */
  width: 400px;
  height: 400px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.customer-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}

.testimonial h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 10px;
  max-width: 200px;
}

.stars {
  color: red;
  font-size: 18px;
}

/* Reset */
/* ABOUT INTRO */
.about-intro {
  padding: 200px 0 200px;
  text-align: center;
}

.about-inner {
  padding-top: 5rem;
}
.about-inner h1 {
  text-align: center;
}
.about-inner p {
  text-align: center;
  max-width: 750px;
  margin: auto;
}

.about-inner h1 {
  max-width: 750px;
  margin: auto;
  padding-top: 4rem;
}

@media (max-width: 768px) {
  .about-inner h1 {
    text-align: left;
  }
  .about-inner p {
    text-align: left;
  }
}
/* TEAM PHOTO */
.group-photo {
  width: 100%;
  margin-top: 40px;
}

.group-photo img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.group-photo--overlap {
  margin-top: -80px;
}

/* STORY + COMMITMENTS */
.story h2 {
  margin-bottom: 1rem;
}

.story p {
  max-width: 600px;
  margin-bottom: 1rem;
}

.commit-title {
  margin: 120px 0 60px;
  text-align: center;
}

.commit-title h3 {
  font-family: "Prata", serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.commit-card {
  background: #e9dfcf;
  padding: 40px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.commit-card h3 {
  font-family: "Prata", serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  max-width: 150px;
}

.commit-card p {
  max-width: 200px;
}

/* CLOSING SECTION */
.closing {
  background: #0b0206;
  color: #fff;
  text-align: center;
}

.closing-text {
  max-width: 1200px;
  margin: auto;
  padding-top: 9rem;
}

.closing-text h2 {
  color: #4dd19e;
  font-weight: 100;
  padding: 0 5%;
}

.food-illustration img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .maroon-block {
    padding: 120px 10%;
  }
  .commit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .maroon-block {
    padding: 80px 5%;
  }
  .story h2 {
    font-size: 1.6rem;
  }
  .commit-title h3 {
    font-size: 1.4rem;
  }
  .commit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .commit-card {
    padding: 20px;
    min-height: auto;
  }
}
.hero-section {
  width: 100%;
  height: 100vh;
  background-image: url("../Images/services/ribbon_2.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* TEXT BLOCK */
.hero-content {
  max-width: 600px;
}

/* Desktop */
.hero-content {
  margin-left: 15%;
}

/* Medium Screen */
@media (max-width: 1200px) {
  .hero-content {
    margin-left: 10%;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    background-position: center;
    height: auto;
    padding: 10rem 0;
  }
  .hero-content {
    margin-right: 5%;
  }
}
/* Typography */
.hero-content h1 {
  color: #b22222;
  margin-bottom: 20px;
}

.hero-content p {
  color: #4a4a49;
}

/* WRAPPER */
.services-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* INTRO */
.services-intro {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.services-intro h1 {
  margin-bottom: 20px;
}

.services-title {
  text-align: center;
  margin: 70px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .services-intro h1 {
    text-align: left;
  }
  .services-intro p {
    text-align: left;
  }
  .services-title {
    text-align: left;
  }
}
/* SERVICE ITEM */
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 100px;
}

/* CONTENT */
.service-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
}

/* IMAGE */
.service-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* REVERSE LAYOUT */
.service-item.reverse {
  direction: rtl;
}

.service-item.reverse .service-content {
  direction: ltr;
}

/* TEXT */
.service-content h2 {
  margin-top: 0;
  color: #b22222;
}

.service-content h6 {
  margin-top: 10px;
  font-weight: 600;
}

.service-content ul {
  padding-left: 30px;
  list-style-type: disc;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: -20px;
}

.service-content li {
  margin-bottom: 3px; /* reduce gap */
  line-height: 0.8; /* tighter text spacing */
}

.service-content li::marker {
  font-size: 1.8em;
  margin-bottom: 2px;
}

/* Mobile */
@media (max-width: 768px) {
  .service-content li {
    line-height: 1.5rem;
  }
}
/* MORE SERVICES */
.more-services {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-20px);
  transition: max-height 0.6s ease, opacity 0.5s ease, transform 0.5s ease;
}

/* ACTIVE STATE */
.more-services.active {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
}

/* BUTTON */
.services-btn {
  text-align: center;
  margin-top: 40px;
}

.services-btn button {
  padding: 14px 30px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-wrapper {
    padding: 60px 5%;
  }
  .service-item {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 70px;
  }
  .service-item.reverse {
    direction: ltr;
  }
}
.quote-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.quote-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 420px;
  position: relative;
}
.quote-box h1 {
  font-size: 35px;
  text-align: center;
  line-height: 38px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}

.submit-btn {
  border-radius: 50px;
}

/* PROCESS SECTION */
.process-title {
  margin-bottom: 60px;
  position: relative;
  text-align: center;
}

/* PROCESS GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-top: 60px;
}

/* PROCESS ITEM */
.process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}

.process-item img {
  width: 100px;
  margin-bottom: 20px;
}

.process-item h6 {
  margin-bottom: 10px;
}

.process-item p {
  max-width: 220px;
  margin: 0 auto;
}

/* TABLET */
@media (max-width: 1100px) {
  .process-section {
    padding: 80px 10%;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .process-section {
    padding: 70px 5%;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-title {
    font-size: 32px;
  }
}
/* WHY SECTION */
.why-title {
  margin-bottom: 60px;
  line-height: 1.2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
}

/* CARD */
.why-card {
  background: #e5e5e5;
  padding: 35px;
  position: relative;
  text-align: left;
  min-height: 160px;
}

/* CHECK ICON */
.check-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: #b22222;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}

/* TEXT */
.why-card h6 {
  color: #4a4a49;
}

.why-card p {
  font-weight: 300;
  color: #4a4a49;
  max-width: 220px;
}

/* SECOND ROW CENTER ALIGN */
.why-card:nth-child(4) {
  grid-column: 1/span 1;
}

.why-card:nth-child(5) {
  grid-column: 2/span 1;
}

/* TABLET */
@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-card:nth-child(4),
  .why-card:nth-child(5) {
    grid-column: auto;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .why-section {
    padding: 70px 5%;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-title {
    font-size: 32px;
  }
}
/* CTA SECTION */
.cta-section {
  width: 100%;
  min-height: 850px;
  background-image: url("../Images/services/pepper-event.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

/* OVERLAY */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

/* WRAPPER */
.cta-wrapper {
  position: relative;
  max-width: 700px;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CONTENT */
.cta-content {
  margin-top: 80px; /* space before text */
}

/* TITLE */
/* TEXT */
.cta-content p {
  opacity: 0.95;
  max-width: 600px;
  margin: auto;
  color: white;
}

/* BUTTON CONTAINER */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

/* COMMON BUTTON */
.cta-btn {
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 30px;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

/* QUOTE BUTTON */
.quote-btn {
  background: #c61b1b;
  color: #fff;
}

.quote-btn:hover {
  background: #a81414;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: #25D366;
  color: #fff;
  gap: 8px;
}

.whatsapp-btn img {
  width: 18px;
  height: 18px;
}

.whatsapp-btn:hover {
  background: #1ebe5a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-section {
    min-height: 500px;
    padding: 60px 20px;
  }
  .cta-content h1 {
    font-size: 28px;
  }
  .cta-content p {
    font-size: 15px;
  }
  .cta-buttons {
    margin-top: 50px;
    gap: 15px;
  }
}
/* TABLET */
@media (max-width: 1000px) {
  .cta-content h1 {
    font-size: 36px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 5%;
    min-height: 420px;
  }
  .cta-content h1 {
    font-size: 28px;
  }
  .cta-content p {
    font-size: 15px;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .cta-btn {
    justify-content: center;
    width: 220px;
    margin: auto;
  }
}
.gallery-block {
  color: #fff;
  padding: 120px 0;
}

.gallery-inner {
  width: 100%; /* content area = 100% - (20% + 20%) */
  margin: 0 auto; /* centers the block */
  max-width: 1600px; /* optional, prevents too wide */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery-inner {
    width: 80%;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Mobile */
@media (max-width: 600px) {
  .gallery-inner {
    width: 90%;
  }
  .gallery-title {
    font-size: 1.6rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5rem 0;
  gap: 60px;
  align-items: start;
}

/* FORM SIDE */
.contact-wrapper {
  background: #d9ccb9;
  padding: 50px;
  border-radius: 6px;
}

.title {
  margin-bottom: 10px;
}

.subtitle {
  margin-bottom: 30px;
  max-width: 500px;
}

/* FORM LAYOUT */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.row {
  display: flex;
  gap: 15px;
}

.row input,
.row select {
  flex: 1;
}

/* INPUTS */
input,
select,
textarea {
  width: auto;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* TERMS */
.terms {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
}

/* SUBMIT */
.submit-row {
  display: flex;
  justify-content: flex-start;
}

button {
  background: #d12020;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
}

.submit-row button {
  margin-top: 0;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  margin-bottom: 20px;
}

.contact-details h4 {
  margin-bottom: 10px;
}

/* TABLET */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
/* MOBILE */
@media (max-width: 600px) {
  .row {
    flex-direction: column;
  }
  .contact-wrapper {
    padding: 30px;
  }
}
.drinks-section {
  padding: 80px 10%;
  background: #fff;
}

.drinks-header {
  text-align: center;
  margin: 40px 0;
}

.drinks-header img {
  width: 150px;
  margin: 0 auto 15px auto;
  text-align: center;
}

.drinks-header h2 {
  font-family: "beanco_font";
  font-size: 45px;
  letter-spacing: 2px;
  color: #ff5a5f;
  font-weight: 600;
  margin: 0;
}

.drinks-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.drinks-card {
  background: #f8f6f4;
  padding: 30px;
  border-radius: 14px;
  width: 100%;
  max-width: 400px;
}

.drinks-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drinks-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(66, 53, 53, 0.2);
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #302d2d;
}

.drinks-card li:last-child {
  border-bottom: none;
}

.drinks-image {
  width: 100%;
  overflow: hidden;
  background-color: #ff5a5f;
}

.drinks-image img {
  width: 100%;
  display: block;
  height: auto;
}

@media (max-width: 1200px) {
  .drinks-grid {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .drinks-section {
    padding: 60px 5%;
  }
  .drinks-header h2 {
    font-size: 26px;
  }
  .drinks-card {
    padding: 20px;
  }
  .drinks-card li {
    font-size: 15px;
  }
}
/* TITLE */
.customer-say-section {
  padding-top: 10rem;
}

.customer-say-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

/* LIST */
.customer-say-list {
  max-width: 720px;
  margin: auto;
}

/* REVIEW ITEM */
.customer-say-item {
  border-top: 1px solid #d6d6d6;
  padding-top: 40px;
  margin-bottom: 50px;
}

.customer-say-item:last-child {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 40px;
}

/* NAME */
.customer-name {
  font-size: 20px;
  margin-bottom: 6px;
}

/* RATING */
.customer-rating {
  color: #f4b400;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-size: 15px;
}

/* DATE */
.customer-date {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
}

/* REVIEW TEXT */
.review-text {
  max-height: 70px; /* approx 3 lines */
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.review-text p {
  line-height: 1.7;
  margin: 0;
  color: #333;
}

/* EXPANDED */
.review-text.expanded {
  max-height: 500px;
}

/* BUTTON */
.customer-say-item .read-more-btn {
  background: none;
  border: none;
  color: #c00000;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  padding: 0;
}

/* MOBILE */
@media (max-width: 600px) {
  .customer-say-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .customer-name {
    font-size: 18px;
  }
}
.footer-outer {
  width: 100%;
  background-color: black; /* dark background */
  text-align: center;
  position: relative;
}

.years-logo-outer {
  position: relative; /* important for absolute positioning */
  z-index: 99;
  width: 100%;
  height: 75px;
  background-color: black; /* dark background */
}

.circle-logo {
  width: 150px;
  height: 150px;
  background-color: black; /* black background */
  background-image: url("../Images/home_page/22-years.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%; /* adjust as needed */
  border-radius: 50%;
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-inner {
  background-color: black; /* dark background */
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}

.footer-content {
  text-align: center;
}
.footer-content img {
  width: 150px;
  margin: auto;
}
.footer-content p {
  color: rgb(173, 163, 163);
  padding: 20px 0 40px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons img {
  width: 40px;
}

.address-footer hr {
  width: 25%;
  margin-top: 50px;
}

/* FOOTER MENU WRAPPER */
.footer-menu {
  width: 100%;
  text-align: center;
  padding: 100px 0;
}

/* MENU INNER */
.footer-menu-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* LINKS */
.footer-menu-inner a {
  position: relative;
  color: #e2c259;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 0 12px;
}

/* SEPARATOR LINE */
.footer-menu-inner a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
}

/* HOVER */
.footer-menu-inner a:hover {
  opacity: 0.75;
}

/* TABLET */
@media (max-width: 1024px) {
  .footer-menu-inner {
    gap: 14px;
  }
  .footer-menu-inner a {
    font-size: 14px;
    padding: 0 10px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .footer-menu-inner {
    gap: 10px;
  }
  .footer-menu-inner a {
    font-size: 14px;
    padding: 0 8px;
  }
  .footer-menu-inner a:not(:last-child)::after {
    height: 12px;
  }
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: background-color 0.5s ease;
  z-index: 100;
}

/* NAV CONTAINER */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 45%;
  margin: 40px auto 0;
  padding: 5px 40px;
  background: black;
  border-radius: 50px;
  position: relative;
  z-index: 1001;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: white;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  padding-bottom: 6px;
}

/* HOVER UNDERLINE */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: red;
  transition: width 0.3s ease;
}

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

/* ACTIVE PAGE UNDERLINE */
.nav-links a.active::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* HAMBURGER ACTIVE */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ac273f;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 20px;
  z-index: 1000;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding-top: 150px;
  margin: 0 5%;
}

.mobile-menu a {
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .nav-container {
    max-width: 60%;
  }
}
@media (max-width: 1200px) {
  .nav-container {
    max-width: 70%;
  }
}
@media (max-width: 1000px) {
  .nav-container {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .nav-container {
    max-width: 70%;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
/* SECTION BACKGROUNDS */
#white {
  background: #ffffff;
}

#maroon {
  background: #ac273f;
}

#green-grey {
  background: #44493f;
}

#light-green {
  background: #dbf5c1;
}

.landing-page {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* Content wrapper */
.landing-page-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
}

/* H1 uppercase + max-width handled by parent */
.landing-page-inner h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase; /* your requirement */
  max-width: 650px; /* your requirement */
  margin: auto;
  padding: 0 40px;
}

/* H3 also contained within max-width */
.landing-page-inner h3 {
  font-size: 20px;
  font-weight: 300;
  max-width: 500px; /* your requirement */
  margin: auto;
  line-height: 25px;
  padding: 0 40px;
}

/* Move the years-of-experience badge to bottom-left */
.years-of-experience {
  position: absolute;
  bottom: 4.5rem; /* your requirement */
  left: 4.5rem; /* your requirement */
  width: 150px;
  z-index: 4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .landing-page-inner h1 {
    font-size: 28px;
  }
  .landing-page-inner h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .years-of-experience {
    width: 130px;
    bottom: 2.5rem;
    left: 2.5rem;
  }
}
.h1-animated {
  animation: fadeUp 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
button {
  margin-top: 3rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  outline: inherit;
  border-radius: 50px;
  background-color: transparent;
  color: white;
  padding: 12px 30px;
  background-color: #c61b1b;
  border-radius: 50px;
}

button:hover {
  cursor: pointer;
  background-color: red;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

/* Lists */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Scroll Lock (for mobile menu / popup) */
.lock-scroll {
  overflow: hidden;
}

.site-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

/* Web coding starts here *//*# sourceMappingURL=style.css.map */