* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
}
body {
  width: 100%;
  height: 100%;
}
#home {
  background-color: black;
  width: 100%;
  height: 100vh;
  position: relative;
}
.front {
  width: 100%;
  height: 100vh;
  background-color: rgb(185, 138, 83);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav {
  display: flex;
  width: 100%;
  height: 10%;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1;
}
nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}
nav ul a {
  font-size: 22px;
  text-decoration: none;
  color: rgba(240, 248, 255, 0.882);
}
nav h1 {
  font-size: 25px;
  text-decoration: none;
  color: rgba(240, 248, 255, 0.904);
}
.front h1 {
  color: rgba(240, 248, 255, 0.619);
  font-size: 20vw;
}
#coffee {
  width: 16%;
  position: absolute;
  filter: drop-shadow(2px 2px 10px black);
  z-index: 9;
}
#coffeebean1,
#coffeebean2,
#coffeebean3,
#coffeebean4,
#coffeebean5 {
  width: 16%;
  position: absolute;
  filter: drop-shadow(2px 2px 10px black);
}
#coffeebean1 {
  left: 33%;
  top: 5%;
  transform: rotate(20deg);
}
#coffeebean2 {
  left: 52%;
  top: 72%;
  transform: rotate(20deg);
  z-index: 2;
}
#coffeebean3 {
  left: 70%;
  top: 35%;
  transform: rotate(131deg);
}
#coffeebean4 {
  left: 14%;
  top: 45%;
  transform: rotate(131deg);
}
#coffeebean5 {
  left: 58%;
  top: 6%;
  transform: rotate(-31deg);
}
#about {
  width: 100%;
  height: 100vh;
  background-color: rgb(185, 138, 83);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  z-index: -1;
}
.card {
  height: 70%;
  width: 26%;
  background-color: rgba(238, 206, 170, 0.896);
  box-shadow: 2px 2px 10px black;
  border-radius: 20%;
}
.para {
  height: 60%;
  width: 70%;
  font-size: 2vw;
  color: rgba(240, 248, 255, 0.619);
}
#can1, #can2 {
  width: 62%;
  top: -102;
  filter: drop-shadow(2px 2px 10px black);
  z-index: 1;
 
}
#menu {
  width: 100%;
  height: 100vh;
  background-color: rgb(232, 217, 200);
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap;
  z-index: -1;
}

#can1 {
  top: -300px;
  left: 600px;
}
#can2 {
  top: -300px;
  left: 900px;
}




/* ✅ Card Styling Updated */
.card1, .card2, .card3 {
  width: 400px;
  height: 550px;
  background-color: rgba(238, 206, 170, 0.9);
  box-shadow: 2px 2px 10px black;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.card1:hover,
.card2:hover,
.card3:hover {
  transform: scale(1.05);
}

.card1 img,
.card2 img,
.card3 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card1 p,
.card2 p,
.card3 p {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  z-index:-1;
}
#contact {
  position: relative;
  background-color: #c6965b;
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 250px 50px;
  flex-direction: column;
  z-index:-1;
  /* z-index: 0; or remove this line */
}

.background-text {
  position: absolute;
  top: 70px;
  font-size: 6vw;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.contact-card {
 
  width: 450px;
  background: #eee3d1;
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.contact-card input,
.contact-card textarea {
  padding: 15px;
  border: 2px solid #c6965b;
  border-radius: 10px;
  font-size: 16px;
  resize: none;
}

.contact-card button {
  padding: 12px;
  font-size: 16px;
  background-color: transparent;
  color: #c6965b;
  border: 2px solid #c6965b;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-card button:hover {
  background-color: #c6965b;
  color: white;
}
.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* aligns everything to the left */
}




