/* BACKGROUND */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #fdf6ec, #f7efe5);
  color: #333;
}

/* NAVBAR */
.navbar {
  background-color: #3e2c23; /* dark coffee */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .navbar-brand {
  color: #fff;
}

.navbar .nav-link {
  color: #f5e6d3;
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #e6b17e; /* caramel */
}

/* TEXT */
h2 {
  font-weight: 700;
  color: #3e2c23;
}

p {
  line-height: 1.7;
}

/* IMAGE */
img {
  border-radius: 15px;
}

/* CAROUSEL */
.carousel-img {
  height: 500px;
  object-fit: cover;
  filter: brightness(75%);
}

.carousel-caption {
  bottom: 20%;
}

.carousel-caption h3 {
  color: #fff;
  font-weight: 700;
}

.carousel-caption p {
  color: #f5e6d3;
}

/* BUTTON STYLE (optional if you add buttons) */
.btn-custom {
  background-color: #c59d5f;
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  border: none;
}

.btn-custom:hover {
  background-color: #a67c52;
}

/* FOOTER */
.custom-footer {
  background: #3e2c23;
  color: #f5e6d3;
}

.custom-footer h5 {
  color: #fff;
}

.custom-footer a {
  color: #e6b17e;
}

.custom-footer img {
  width: 25px;
  transition: 0.3s;
}

.custom-footer img:hover {
  transform: scale(1.2);
}

/* ANIMATION */
.fade-slide-left {
  animation: slideLeft 1s ease;
}

.fade-slide-right {
  animation: slideRight 1s ease;
}

@keyframes slideLeft {
  from {opacity:0; transform:translateX(-50px);}
  to {opacity:1; transform:translateX(0);}
}

@keyframes slideRight {
  from {opacity:0; transform:translateX(50px);}
  to {opacity:1; transform:translateX(0);}
}

/* MENU BOX */
.menu-box {
  max-width: 700px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* CLICKABLE IMAGE */
.menu-img {
  cursor: pointer;
  transition: 0.3s;
}

.menu-img:hover {
  transform: scale(1.03);
}

/* MODAL */
.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
  border-radius: 15px;
  animation: zoomIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

@keyframes zoomIn {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}

/* ANIMATION */
.fade-slide-up {
  animation: slideUp 1s ease;
}

@keyframes slideUp {
  from {opacity:0; transform:translateY(50px);}
  to {opacity:1; transform:translateY(0);}
}

/* EVENT CARDS */
.event-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.event-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.event-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(62,44,35,0.7);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  opacity: 0;
  transition: 0.4s;
}

.event-card:hover .overlay {
  opacity: 1;
}

/* MODAL */
.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 85%;
  margin-top: 60px;
  border-radius: 15px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* CONTACT BOX */
.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* INPUTS */
.form-control {
  border-radius: 10px;
  padding: 10px;
}

/* BUTTON */
.btn-custom {
  background-color: #c59d5f;
  color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  border: none;
}

.btn-custom:hover {
  background-color: #a67c52;
}

/* GALLERY IMAGE */
.gallery-img {
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-img:hover {
  transform: scale(1.03);
  filter: brightness(0.85);
}

/* MODAL */
.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 85%;
  margin-top: 60px;
  border-radius: 15px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-custom {
  background-color: #c59d5f;
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  border: none;
}

.btn-custom:hover {
  background-color: #a67c52;
}