/* HIGHLIGHTS */
.uhighlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Desktop */
  gap: 10px;
  margin: 10px 0;
}

.uhighlights span {
  background: #f7f7f7;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
}




/* Hero Section */
.c-hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.c-hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(80%); /* darken the image for readability */
}

.c-hero-content h1 {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
  border-bottom: 3px solid white ;
  border-top: 3px solid white ;
  padding-top: 5px;
  padding-bottom: 5px;
    font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.c-hero-content h1 span {
  font-weight: normal;
  font-size: 35px;
  display: block;
  margin-top: 10px;
  color: white;
}

.c-hero-content p {
  font-size: 24px;
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .c-hero-section{
    height: 75vh;
  }
  .c-hero-content h1 {
    font-size: 50px;
  }
  .c-hero-content h1 span {
    font-size: 28px;
  }
  .c-hero-content p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {

   .c-hero-section{
    height: 70vh;
  }
  .c-hero-content h1 {
    font-size: 42px;
  }
  .c-hero-content h1 span {
    font-size: 24px;
  }
  .c-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
   .c-hero-section{
    height: 60vh;
  }
  .c-hero-content h1 {
    font-size: 36px;
  }
  .c-hero-content h1 span {
    font-size: 22px;
  }
  .c-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {


  .uhighlights {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* MOBILE */
@media (max-width: 576px) {
 

  .uhighlights {
    grid-template-columns: 1fr;
  }
}

/* Section */
.udining-section {
  padding: 80px 0;
  background: #f8f8f8; /* optional section bg */
}

.ucontainer {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Grid for cards */
.udining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

/* Card */
.udining-card {
  position: relative;
  height: 475px;   /* slightly taller */
  border-top-left-radius:20px ;
  border-top-right-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  max-width: 325px;  /* reduced width */
  margin: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  background: #000;
  transition: transform 0.5s linear;
  margin-bottom: 30px;
}

.udining-card img {
  width: fit-content;
  height: 100%;
  object-fit: cover;
  transition: transform .5s linear;
}

/* Overlay – completely hidden initially */
.udining-overlay {
  position: absolute;
  bottom: -35%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 25px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: bottom 0.5s linear, background 0.5s linear;
}

/* Heading */
.udining-overlay h3 {
  font-size: 24px;
  margin: 10px 0 ;
  padding-bottom: 6px;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);

}

/* Paragraph */
.udining-overlay p {
  font-size: 14px;
  line-height: 1.6;
  /* opacity: 0; */
  color: #f7f7f7;

  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Button */
.ubtn-book {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 28px;
  border-radius: 25px;
  background: #336364;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;

}

/* Hover Effects */
.udining-card:hover img {
  transform: scale(1.08);
}

.udining-card:hover .udining-overlay {
  bottom: 0;  /* slide up into view */
  background: rgba(255, 255, 255, 0.25);
}

.udining-card:hover .udining-overlay h3,
.udining-card:hover .udining-overlay p,
.udining-card:hover .ubtn-book {
  opacity: 1;
  transform: translateY(0);
}

/* Button hover animation */
.ubtn-book:hover {
  background: #052f30;
  transform: scale(1.05);
}

/* Responsive Grid */
.udining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

@media (max-width: 991px) {
  .udining-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .udining-grid {
    grid-template-columns: 1fr;
  }
  .udining-card{
max-width: 300px;
height: 325px;
  }
  .udining-overlay h3 {
  font-size: 20px;
  margin: 5px 0 ;
  padding-bottom: 3px;


}

/* Paragraph */
.udining-overlay p {
  font-size: 12px;
  line-height: 1;

}

.udining-overlay {
  position: absolute;
  bottom: -40%;
}
}

/* Start hidden */
.c-animate-from-top,
.c-animate-from-bottom {
  opacity: 0;
}

/* Slide from Top */
@keyframes slideFromTop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Slide from Bottom */
@keyframes slideFromBottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Apply Animations */
.c-animate-from-top {
  animation: slideFromTop 1s ease-out forwards;
  animation-delay: 0.2s; /* slight delay after page load */
}

.c-hero-content h1 span {
  animation: slideFromBottom 1s ease-out forwards;
  animation-delay: 0.7s; /* after h1 */
}

.c-hero-content p {
  animation: slideFromBottom 1s ease-out forwards;
  animation-delay: 1.0s; /* after span */
}

/* Optional: smoother effect */
.c-animate-from-top,
.c-animate-from-bottom {
  transition: all 0.5s ease-out;
}
