/* ===== Base Page Styling ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #f5f5f5;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
    url("coffeebean5.png") center/cover no-repeat fixed;
 

}

/* ===== Navbar ===== */
.navbar {
  background-color: #3e2723;
  padding: 15px 0;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  padding: 8px 15px;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 3px solid transparent;
}

.navbar a:hover {
  color: #ffcc80;
  border-bottom: 3px solid #ffcc80;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background-image: url("https://www.dropbox.com/scl/fi/arx137ubb3t154of3c9nm/Screenshot_20210603-001143_Messenger.jpg?rlkey=f4k48szvn0xtm5ibce0gvgof1&raw=1");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 540px;
  width: 80%;
  margin: 120px auto 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, #b8860b, #d4a64f, #ffcc80);
  border-image-slice: 1;
}

/* ===== Info Cards Section ===== */
.info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px auto;
  width: 80%;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  padding: 25px;
  border-radius: 15px;
  width: 300px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 204, 128, 0.8);
}

/* ===== Footer ===== */
footer {
  background: #2b1a12;
  color: #d4a64f;
  padding: 20px 0;
  margin-top: 100px;
  font-size: 14px;
  letter-spacing: 1px;
}
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

#contactForm button {
  background-color: #b8860b;
  color: white;
  font-weight: bold;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

#contactForm button:hover {
  background-color: #d4a64f;
}

#status {
  margin-top: 10px;
  font-style: italic;
  color: #ffcc80;
}

