/* ----------------------------- COLOUR VARIABLES START ----------------------------- ----------------------------- ----------------------------- */
:root {
  --darkgreen: #4e755f;
  --green: #559271;
  --yellow: #ffce6c;
    --black: #1C1C1C;
    --white: #fffde6;
    --logoyellow: #e1a83b;
    
    --greenalt: #6dc595;
    --yellowalt: #ffe76c;
    --lightgray: #F2F2F2;
    --darkgray: #2A2A2A;
    --gray: #6c6c6c;

}
.monoton-regular {
  font-family: "Monoton", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 10;
}


.eb-garamond-reg {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.courier-prime-regular {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}

.courier-prime-bold {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
}

.courier-prime-regular-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: italic;
}

.courier-prime-bold-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: italic;
}

/* ----------------------------- COLOUR VAR END ----------------------------- ----------------------------- ----------------------------- */


/* ----------------------------- BASIC FORMATTING  ----------------------------- ----------------------------- ----------------------------- */


html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--black);
}


/* ----------------------------- SPLASH START ----------------------------- ----------------------------- ----------------------------- */


#splash {
    background-color: var(--greenmain);
    width: 100%;
    height: 100%;
    position: fixed;
    margin: 0;
    overflow: hidden;
    display: flex;
}

#splash img {
    display: block;
    margin: auto;
    width: 50%;
    justify-content: center;
}
#splash img:hover {
    cursor: pointer;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;

}

/* ----------------------------- SPLASH END ----------------------------- ----------------------------- ----------------------------- */


/* ----------------------------- HEADER START ----------------------------- ----------------------------- ----------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 10px solid var(--green);
  /* color: var(--white); */
}

.site-header img {
  height: 75px;
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items:center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--yellow);
}

/* Page Content (for testing scroll) */
.content {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.content p {
  margin-bottom: 2rem;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: var(--white);
  font-weight: 500;
  padding: 0;
  font-size: 1.5rem;
  transition: color 0.2s ease-in;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 140px;
  background-color: var(--yellow);
  border: 2px solid var(--black);
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}


.dropdown:hover .dropdown-content {
  display: block;
}


.dropdown:hover .dropbtn {
  color: var(--yellow);
}


/* ----------------------------- HEADER END ----------------------------- ----------------------------- ----------------------------- */
#load-more-btn {
  font-weight: 500;
  width: 50vw;
  margin: auto;
  margin-bottom: 2%;
  margin-top: -7.5vh;
  height: 5vh;
  background-color: var(--yellow);
  border-radius: 12px;
  border: 2px solid var(--black);
  font-size: 1.25rem;
}

#load-more-btn:hover {
  cursor: pointer;
  background-color: var(--green);
  border: 2px solid var(--black);
  color: var(--white);
}

/* ----------------------------- BANNER START ----------------------------- ----------------------------- ----------------------------- */

.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  background-image: url('assets/gallery/jujuwork.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* margin-bottom: ; */
  /* border-bottom: 10px solid var(--yellow); */
}


.banner-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  display: flex;
  width: 75%;
  height: 75%;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.banner-text {
  width: 66.66%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 1rem; /* spacing between elements */
  /* align-items: flex-start; */
}

.banner-text h1 {
  font-size: 4rem;
  margin: 0;
  line-height: 1.2;
}

.banner-text p {
  font-size: 1.75rem;
  margin-top: 5rem;
}


/* Image block - 1/3 width */
.banner-side-image {
  width: 33.33%;
  height: 100%;
  overflow: hidden;
}

.banner-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------- BANNER END ----------------------------- ----------------------------- ----------------------------- */


/* ----------------------------- INTERLUDE START ----------------------------- ----------------------------- ----------------------------- */

.interlude-scroll {
  display: flex;
  overflow-x: hidden;
  white-space: nowrap;
  width: 100%;
  height: 40vh;
}

.display-img {
  flex: 0 0 auto;
  width: 50vw;
  height: 100%;
}

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




/* ----------------------------- INTERLUDE END ----------------------------- ----------------------------- ----------------------------- */




/* ----------------------------- TILESTRIP START ----------------------------- ----------------------------- ----------------------------- */

.tile-strip {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100vw;
    height: 50px;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    background-color: var(--black);
}

.tile-strip-alt {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100vw;
    height: 50px;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    background-color: var(--green);
}

.tile-strip img, .tile-strip-alt img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}
/* ----------------------------- TILESTRIP END ----------------------------- ----------------------------- ----------------------------- */


/* ----------------------------- MENU  START----------------------------- ----------------------------- ----------------------------- */
.menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-left: 1rem;
  position: relative;
  max-width: 100vw;
  overflow-x: auto;
}

.menu-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2rem;
  width: 100%;
  height: 35vh;
  padding: 10px 2rem;
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--green);
}

.menu-desc1 {
  flex-shrink: 0;
  margin-left: 35px;
  text-align: center;
}

.menu-desc1 h1 {
  font-size: 4rem;
  margin: 0;
}

.menu-desc {
  flex-grow: 1;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-desc p {
  margin: 0;
}

.mobile-order-btn {
  display: inline-block;
  padding: 1rem 6rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: 2px dashed var(--yellow);
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
}

.mobile-order-btn:hover {
  background-color: var(--yellow);
  color: var(--white);
  border: 2px solid var(--yellow);
  outline: 2px solid var(--yellow);
}

/* Train Decal */
.train {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  /* margin-left: -15px; */
  /* margin-le */
  margin-right: 100px;
}

.circles-lines-wrapper {
  display: flex;
  align-items: center;
  height: 190px;
}

.lines {
  display: flex;
  gap: 5px;
  height: 100%;
}

.vertical-line {
  width: 2.5px;
  height: 100%;
  background-color: var(--white);
}

.circles {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-left: 10px;
}

.circle {
  width: 50px;
  height: 50px;
  background-color: var(--yellow);
  border-radius: 50%;
}

  

/* ----------------------------- MENU END ----------------------------- ----------------------------- ----------------------------- */


/* ----------------------------- FOOTER START ----------------------------- ----------------------------- ----------------------------- */

  #footer {
    display: flex;
    justify-content: space-between;
    /* justify-content: ; */
    align-items: center;
    padding: 2rem;
    background-color: var(--black);
    color: var(--white); 
    flex-wrap: wrap; 
  }
  
  #footer > div:first-child {
    flex: 1; /* 1/3 of the space */
    min-width: 250px;
  }
  
  #footer > div:last-child {
    flex: 2; /* 2/3 of the space */
    display: flex;
    justify-content: center;
  }
  
  #footer img {
    max-width: 100%;
    height: auto;
  }
  
  #footer > div:first-child > div {
    margin-bottom: 1.5rem;
  }

#footer a {
    color: var(--white);
}

#footer a:hover {
    color: var(--logoyellow);
}
#footer h1 {
    color: var(--logoyellow);
}

/* ----------------------------- FOOTER END ----------------------------- ----------------------------- ----------------------------- */


/* END BANNER */
/* #banner-3 {
    width: 100%;
    padding: 5px;
    height: 20px;
    background-color: var(--yellow);
}
.banner {
    background-image: url('assets/elements/movingcart.gif');
    background-repeat: repeat-x;
    background-size: contain; 
    height: 100%; 
  } */
  

  
/* ----------------------------- INSTAGRAM GALLERY START ----------------------------- ----------------------------- ----------------------------- */


  .insta-row {
    display: flex;
    width: 90%;
    gap: 1rem;
    align-items: center;
    /* background-color: var(--yellow); */
    margin: auto;
    padding: 5px;
    margin-top: 10vh;
    margin-bottom: 10vh;
  }
  
  /* Left 1/3 */
  .insta-left {
    flex: 1;
  }
  
  .insta-left img {
    outline: 4px solid transparent;
    border: 2px solid var(--black);
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
  }
  
  /* Right 2/3 - 2 rows x 3 columns */
  .insta-right {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .insta-right img {
    outline: 4px solid transparent;
    border: 2px solid var(--black);
    width: 98%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
  }

.insta-right img:hover, .insta-left img:hover {
  border: 2px solid  var(--yellow);
  outline: 4px solid  var(--yellow);
}


/* ----------------------------- INSTAGRAM GALLERY END ----------------------------- ----------------------------- ----------------------------- */
/* ----------------------------- SANDWHICH Start ----------------------------- ----------------------------- ----------------------------- */


.feature-section {
  position: relative;
  width: 100%;
  height: 75vh;
  background-image: url('assets/gallery/cafe-slideshow/gallery01.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-overlay {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  height: 100%;
  justify-content: space-around;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
}

.feature-oval {
  width: 400px;
  height: 600px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  flex-shrink: 0;
}

.feature-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text box */
.feature-text {
  width: 33.33%;
  height: auto;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  color: var(--black);
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.15); */
}

/* ----------------------------- SANDWHICH END ----------------------------- ----------------------------- ----------------------------- */






/* ----------------------------- CUSTOM CAKES START  ----------------------------- ----------------------------- ----------------------------- */


.banner2 {
  position: relative;
  width: 100%;
  height: 90vh;
  background-image: url('assets/gallery/jujuwork.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner2-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 1rem;
  text-align: center;
}

.banner2-row {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.banner2-row1 h1 {
  font-size: 3.5rem;
  margin: 0;
}

.banner2-row2 h2 {
  font-size: 2.5rem;
  margin: 0;
}

.banner2-row2 p {
  font-size: 1.5rem;
  max-width: 700px;
}

.banner2-row3 {
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  max-width: 900px;
}

.circle-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
}



/* ----------------------------- CUSTOEM CAKES END  ----------------------------- ----------------------------- ----------------------------- */
/* ----------------------------- RESPONSIVEITY  ----------------------------- ----------------------------- ----------------------------- */


/* Responsive: stack vertically on small screens */

@media (max-width: 1300px) {
  .banner-text p {
    display: none;
  }
  .banner-text {
    justify-content: center;
  }
    
  .insta-row {
    flex-direction: column;
  }

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

  .insta-right {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .menu {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
  }

  .left-oval {
      display: none;
  }

  .bg-section {
    width: 100%;
    padding: 2rem 1rem;
    border-radius: 20px;
    flex-direction: column;
    gap: 1.5rem;
    margin: auto;
    border: 2px solid var(--black);
  }

  .oval-wrapper {
    width: 50vw;
    height: 45vh;
    max-width: none;
    min-width: auto;
  }

  .right-oval, .middle-oval {
      margin-left: 0;
  }
}

@media (max-width: 900px) {
  .nav-links a {
    font-size: 2rem;
  }

  .site-header {
    height: 150px;
    display: inline-block;
    width: 100%;
  }

  .dropdown {
    font-size: 2rem;
  }
  .menu-info {

    flex-wrap: wrap;
    text-align: center;
    align-items: flex-start;
    height: fit-content;

  }
  .menu-info > .menu-desc:first-child {
    flex-basis: 100%;
    margin-bottom: 1rem;
  }

  .menu-info > .menu-desc:nth-child(2),
  .menu-info > .train {
    flex: 1 1 40%;  
    min-width: 150px;
  }
  .menu-info > .train {
    display: flex;
    justify-content: flex-end;
  }

  .mobile-order-btn {
    width: 50%;
    /* margin-top: auto; */
    margin-top: 25%;
    margin-left: 25%;
  }
  .menu-desc p {
    display: none;
  }

  .menu-desc1 {
    /* width: 100%; */
    /* margin: auto; */
    margin-left: 0;
    /* margin-right: auto; */
  }
}

@media (max-width: 1200px) {

  .display-img {
    width: 100%;
  }
  .display-img img {
    transform: translateX(-40%);
  }
  #d-img2{
    display: none;
  }


  .banner-content {
    flex-direction: column-reverse;
    height: 95%;
    text-align: center;
  }
  .banner-side-image {
    width: 100%;
    /* height: 100%; */
  }
  .banner-side-image img {
    height: 150%;
  }

  .banner-text {
    width: 75%;
    margin: auto;
  }
  .banner-text h1 {
    font-size: 2.5rem;
  }
  .circle-img {
    width: 160px;
    height: 160px;
    border: 2px solid var(--white);
  }
  .feature-oval {
    display: none;
  }
  .feature-text {
    width: 80%;
  }
}

@media (max-width: 1500px) {
  #footer {
    flex-direction: column;
    text-align: center;
  }

  #footer > div:first-child {
    order: 2; /* text goes on top */
    flex: none;
    width: 100%;
  }

  #footer > div:last-child {
    order: 1; /* logo goes on bottom */
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  #footer h1,
  #footer a,
  #footer p {
    font-size: 1.5rem; /* slightly larger for readability */
    line-height: 1.6;
  }
}
