
body {
  background: radial-gradient(circle, #fcefcb, #8b5e3c);
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


.navbar {
  background: radial-gradient(circle, #fcefcb, #a67850);
  border-bottom: 2px solid #8b5e3c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(4px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 2em;
  font-weight: bold;
  color: #4b2e1e;
  margin-left: 20px;
}

.logo span {
  color: #8b5e3c;
}

.nav-links a {
  color: #8b5e3c;
  text-decoration: none;
  margin-right: 25px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 5px;
}

.nav-links a:hover {
  background-color: #8b5e3c;
  color: #fcefcb;
}


.background-image {
  background-image: url("Images/CafeBackground.jpg");
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  position: relative;
}

.background-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fcefcb;
}

.hero-content p {
  font-size: 1.5em;
  color: #fcefcb;
}

main {
  flex: 1;
}

.body-content {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.body-content p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #4b2e1e;
  margin-bottom: 40px;
}

.offers {
  text-align: center;
  padding: 80px 40px;
  background-color: #fcefcb;
}

.offers h2 {
  color: #8b5e3c;
  font-size: 2.5em;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.offer-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-box {
  background-color: #ffffff;
  border: 2px solid #8b5e3c;
  border-radius: 12px;
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.offer-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.offer-box h3 {
  color: #8b5e3c;
  margin: 15px 0;
  font-size: 1.5em;
}

.offer-box p {
  color: #333;
  font-size: 1em;
  line-height: 1.6;
  margin: 10px 0 20px;
}

.offer-box button {
  background-color: #8b5e3c;
  border: none;
  border-radius: 5px;
  color: #fcefcb;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 25px;
  transition: all 0.3s ease;
  width: 100%;
}

.offer-box button:hover {
  background-color: #a67850;
  transform: translateY(-2px);
}

footer {
  background-color: #4b2e1e;
  color: #fcefcb;
  padding: 30px 20px;
  margin-top: auto;
}

footer p {
  color: #fcefcb;
  margin: 10px 0;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #fcefcb;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.social-links a:hover {
  color: #d6a727;
}

.social-links i {
  font-size: 1.2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #4b2e1e;
  font-family: "Georgia", serif;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 1.8em;
}

button {
  background-color: #8b5e3c;
  border: none;
  border-radius: 5px;
  color: #fcefcb;
  cursor: pointer;
  font-size: 16px;
  margin: 10px;
  padding: 12px 25px;
  transition: all 0.3s ease;
  font-weight: bold;
}

button:hover {
  background-color: #a67850;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #8b5e3c;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 10px;
  }

  .logo {
    margin: 10px 0;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-links a {
    margin: 5px;
    padding: 8px 12px;
  }

  .background-image {
    height: 50vh;
    margin-top: 120px;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .hero-content p {
    font-size: 1.2em;
  }

  .offers {
    padding: 40px 20px;
  }

  .offers h2 {
    font-size: 2em;
  }

  .offer-container {
    gap: 20px;
  }

  .offer-box {
    width: 90%;
    max-width: 300px;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .offers h2 {
    font-size: 1.8em;
  }

  .offer-box {
    width: 100%;
    padding: 15px;
  }
}
