/* Styling starts here*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Pacifico', cursive;
  background-color: beige;
}

h1 {
  text-align: center;
}
/* Navgation bar and logo styling starts here*/
.navbar_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#navbar_logo {
  font-size: 50px;
  font-family: 'Lobster', cursive;
  font-style: italic;
  font-weight: bold;
  color: #8b795e;
  text-decoration: wavy;
  padding: 5px;
  margin-right: 0;
  margin-left: 0;
  border-radius: 20px;
  display: block;
  text-align: left;
  transition: color 0.3s ease-in-out;
}
#navbar_logo:hover {
  color: #8b795e;
}
.logo_line {
  font-family: 'Lobster', cursive;
  font-style: italic;
  font-weight: bold;
  color: #8b795e;
  text-decoration: wavy;
}
.topnav {
  background-color:beige;
  overflow: hidden;
}
.topnav a {
  float: left;
  color:#8b795e;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav a:hover {
  background-color:beige;
  color: black;
}
.topnav a.active {
  background-color:#8b795e;
  color: white;
}
.topnav a.activee{
  background-color:#8b795e;
  color: white;

}
.topnav a.activeee{
  background-color:#8b795e;
  color: white;
}
.topnav a.activeeee{
  background-color:#8b795e;
  color: white;
}
.topnav a.activeeeee{
  background-color:#8b795e;
  color: white;
}
header {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3; /* Ensure the header is above the slideshow */
  background-color: rgba(255, 255, 255, 0.2); /*Add some transparency to the header */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo {
  flex-grow: 0;
}
.logo img {
  width: 100px;
}
nav {
  display: flex;
  list-style: none;
  padding: 0;
}
nav li {
  margin-right: 1rem;
}
nav a {
  text-decoration: none;
  color: #333;
}
nav a:hover {
  color: #8b795e;
}
/*Navigation bar and logo styling ends here*/
/*Slideshow styling starts here*/
.slideshow {
    position: relative;
    height: 10vh; /* viewport height */
    width: 100%;
    height: fit-content;
    text-align: center;
    overflow: hidden;
}
.slideshow figure {
    margin: 0;
    padding: 0;
}
.slideshow figure img {
    width: 100%;
    height: 20%;
    object-fit: cover;
    text-align: center;
    display: block;
}

.text-overlay {
  position: absolute;
  font-family: 'Pacifico', cursive;
  font-size: 24px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5); 
  padding: 20px; 
  z-index: 1;
  width: 80%;
  max-width: 600px;
}


/* Initially hide all slides except the active one */
.slide {
    display: none;
    vertical-align: middle;
}
.slide.active {
    display: block;
}
.text-container {
  display: none; /* Initially hide text containers */
}
.text-container:first-child {
  display: block; /* Display only the first text container initially */
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-100%);
  }
  55% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(-200%);
  }
  85% {
    transform: translateX(-200%);
  }
  90% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(-300%);
  }
}
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;600&display=swap');
/* Slideshow styling ends here */
/*Image gallery styling starts here*/
img { 
  display: block; 
}

body { 
  font-family: "Fira Sans", sans-serif;
}

h1, h2 { 
  background:#8b795e;
  padding: .5rem 1rem;
  font-size: 1.25rem;
  text-align: center;
}

.gallery { 
  margin-block-start: 2rem; 
  margin-block-end: 4rem; 
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
/* Gallery styling ends here */
/*Photo cards styling starts here*/
.item {
  scroll-snap-align: center;
}
main {
  background-color:white;
  max-width: 1200px;
  margin: auto;
  min-height: 100vw;
}

h2 {
  padding: 20px 0px;
  text-align: center;
  font-family: 'Lobster',cursive;
  font-style: italic;
  color:white;
}

.card-row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  margin:  0px 10px;
}

.card {
  width: 320px;
  padding: 20px;
  margin: 10px;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  background-color: white;
}

.card:hover {
  box-shadow: 2px 4px 8px 0 rgba(0,0,0,0.15);
}
.card > img {
  border-radius: 2px;
  max-width: 100%;
  margin-bottom: 10px;
  height: auto;
}

.card h3 {
  color:#8b795e;
}

.card p {
  color: #757575;
  line-height: 1.5;
  padding-top: 10px;
}
/* Photocards styling ends here*/
/*Footer styling starts here */
.footer-bottom{
  background-color:white;
  font-size: larger;
  color:#8b795e;
  text-align: center;
  font-style: italic;
  font-weight: 200;
}
/*Footer styling ends here*/
/* Coffee and desert section styling starts here*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pmcolor: #f1f0f9;
  --sdcolor: #fefefe;
  --ttcolor: #2e2e2e;
}

html,
body {
  width: 100%;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--ttcolor);
  background-color: var(--pmcolor);
}

a{
  color: inherit;
  text-decoration: none;
  font-style:italic;
}

.new {
  width: 90%;
  margin: 2rem auto;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
}

.coffee {
  width: 100%;
  cursor: default;
  padding: 1.25rem;
  border-radius: 0.25rem;
  background-color: var(--sdcolor);
  transition: transform 0.3s ease-in-out;
}

.coffee:hover {
  transform: translateY(-0.5rem);
}

.coffee-img {
  width: 100%;
  height: 15rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.25rem;
}

.coffee-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.coffee-title {
  text-transform: capitalize;
  margin: 0.75rem 0;
}

/* Coffee and desert section styling ends here */

/*About us section styling starts here*/
/* The code is adapted from code pen*/

* {
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  font-family: "Oswald", sans-serif;
  font-size: 12pt;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", cursive;
}

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  transition: all 0.5s ease-in-out;
}

.we-are-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 900px;
}

@media screen and (max-width: 860px) {
  .we-are-block {
    height: 2200px;
  }
}

@media screen and (max-width: 500px) {
  .we-are-block {
    height: 2300px;
  }
}

#about-us-section {
  background:#8b795e;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 860px) {
  #about-us-section {
    flex-direction: column;
    justify-content: space-between;
  }
}

.about-us-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 860px) {
  .about-us-image {
    position: relative;
    width: 100%;
    height: 45%;
  }
}

@media screen and (max-width: 747px) {
  .about-us-image {
    height: 35%;
  }
}

@media screen and (max-width: 644px) {
  .about-us-image img {
    position: absolute;
    left: -220px;
  }
}

.about-us-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-evenly;
  width: 40%;
  height: 80%;
  margin-right: 850px;
  margin-left: 12px;
  z-index: 2;
}

@media screen and (max-width: 1353px) {
  .about-us-info {
    margin-right: 400px;
    width: 60%;
    background:#8b795e;
    padding: 0px 25px 0px 0px;
  }
}

@media screen and (max-width: 1238px) {
  .about-us-info {
    margin-right: 340px;
    width: 100%;
  }
}

@media screen and (max-width: 1111px) {
  .about-us-info {
    margin-right: 270px;
  }
}

@media screen and (max-width: 910px) {
  .about-us-info {
    margin-right: 150px;
  }
}

@media screen and (max-width: 860px) {
  .about-us-info {
    margin: 0px 0px 0px 0px !important;
    padding: 0px 20px 0px 20px !important;
    width: 100%;
    height: 55%;
    align-items: center;
  }
}

@media screen and (max-width: 747px) {
  .about-us-info {
    height: 65%;
  }
}

.about-us-info h2 {
  color: white;
  font-size: 40pt;
  text-align: right;
}

@media screen and (max-width: 860px) {
  .about-us-info h2 {
    text-align: center;
  }
}

.about-us-info p {
  color: white;
  font-size: 14pt;
  text-align: right;
}

@media screen and (max-width: 860px) {
  .about-us-info p {
    text-align: center;
  }
}

.about-us-info a {
  background-color: white;
  color:#8b795e;
  width: 180px;
  text-align: center;
  padding: 15px 0px 15px 0px;
  font-size: 14pt;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.about-us-info a:hover {
  background: #404140;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  transform: translateY(10px);
}
/*About section  styling ends here*/

/* Contact us styling starts here*/
/* The code is adapted from code pen*/

* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  box-sizing: border-box;
}
body {
  background: url("https://i.postimg.cc/nrLqvd9J/bg.png") no-repeat center;
  background-size: cover;
  height: 100vh;
  width: 100%;
}
#contact {
  padding: 40px 0;
  h1 {
    text-align: center;
    color: white;
  }}
  .border {
    width: 100px; 
    margin: 30px auto;
    height: 5px;
    background:#8b795e;
  }
  .contact-form {
    max-width: 600px;
    margin: auto;
    padding: 0 10px;
    .contact-form-text {
      display: block;
      width: 100%;
      margin: 15px 0;
      padding: 20px 40px;
      background:white;
      outline: none;
      border: none;
      color: white;
      &:hover {
        border: 1px solid darken(#8b795e, 10%);
      }
    }
    textarea.contact-form-text {
      display: block;
      width: 100%;
      margin: 15px 0;
      padding: 20px 40px;
      background: black;
      outline: none;
      border: none;
      color: white;
      height: 120px;
      overflow: auto;
      &:hover {
        border: 1px solid darken(#8b795e, 10%);
      }
    }
    .btn {
      float: right;
      border: 0;
      outline: 0;
      background:#8b795e;
      padding: 10px 50px;
      border-radius: 10px;
      color: white;
      font-weight: bold;
      font-size: 12px;
      &:hover {
        
      }
    } 
  }  
  /*Contact us styling ends here*/

