
/* Reset */
* {margin: 0; padding: 0; box-sizing: border-box;}
body {font-family: 'Open Sans', sans-serif; color: #fff; background: #111;}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url("image/herobackground.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  color: #fff;
  z-index: 1;
}
;
.hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.btn {
  background: #d4af37;
  color: #000;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
  margin: 0.3rem;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.btn:hover {background: #fff; color: #000;}
.btn-outline {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}
.btn-outline:hover {
  background: #d4af37;
  color: #000;
}

/* Section General */
section {padding: 4rem 2rem; text-align: center;}
section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #d4af37;
}
section p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Services */
.services {
  padding: 50px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  flex: 1 1 calc(25% - 20px); /* 4 cards per row */
  max-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgb(0, 0, 0);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-img {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.2); /* 10% brighter */
}

.service-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgb(0, 0, 0);
}

.service-info {
  padding: 15px;
  text-align: center;
  background: #fff;
  flex-grow: 1;
}

.service-info h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  color: #fce8e8; /* ensure text visible */
}

.service-info p {
  font-size: 1rem;
  line-height: 1.4;
  color: #ebcccc; /* ensure text visible */
}



/* Gallery */
.gallery {
  background: #000000;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;           /* Image fills the grid cell width */
  height: 250px;         /* Set all images to same height */
  object-fit: cover;     /* Crops or scales image to fit without stretching */
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05); /* Subtle hover zoom effect */
}

/* Enquiry form */
.enquiry-form {
  max-width: 600px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgb(0, 0, 0);
  text-align: left;
}

.enquiry-form h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #000000;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.enquiry-form button {
  width: 100%;
  padding: 12px;
  font-size: 1.2rem;
  border-radius: 10px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.enquiry-form button:hover {
  background: #e6b800;
}


/* Footer */
footer {
  padding: 1rem;
  text-align: center;
  background: #000;
  font-size: 0.9rem;
  color: #bbb;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-overlay h1 {font-size: 2rem;}
  .hero-overlay p {font-size: 1rem;}
}


/* Default state (hidden) */
.animate-up, .animate-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease; /* slow and smooth */
}

/* When visible */
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s; /* thoda delay for better effect */
}




.service-card {
  position: relative;
  border-radius: 15px;
  margin: 20px 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgb(0, 0, 0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: scale(1.03);
}

/* Image container */
.service-img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay to darken image for text readability */
.service-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
}

/* Text info */
.service-info {
  position: relative;
  text-align: center;
  padding: 15px;
  background: #000000;
}

.service-info h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.service-info p {
  font-size: 1rem;
  line-height: 1.4;
}

/* Scroll animation */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s ease; }
.animate-fade { opacity: 0; transform: translateY(20px); transition: all 1s ease; }
.appear { opacity: 1; transform: translateY(0); }


/* Testimonials */
.testimonials {
  padding: 60px 20px;
  text-align: center;
  background: #000000;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(30% - 20px);
  max-width: 350px;
  background: rgb(196, 151, 151);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgb(0, 0, 0);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #000000;
}

.testimonial-card h4 {
  font-weight: bold;
  color: #000000;
}

/*whatsapp floating button*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  padding: 15px 18px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/*Stats*/
.stats {
  background: #000000; /* light background for contrast */
  padding: 60px 20px;
  text-align: center;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-card {
  flex: 1 1 200px;
  max-width: 200px;
  background: #8f6b6b;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgb(0, 0, 0);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: #f5a623; /* accent color */
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 1rem;
  color: #333;
}



/* Parallax Section */
.parallax-bg {
  position: relative;
  background-image: url('image/logo.png'); /* your logo in background */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; /* logo fits nicely */
  min-height: 150vh; /* enough height to cover both sections */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
}

/* Hero Content */
.hero-content {
  margin-top: 50px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.5rem;
  max-width: 700px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

/* About / Legacy Content */
.about-content {
  margin-top: 100px; /* spacing from hero section */
  background: rgba(15, 12, 12, 0); /* slightly transparent white background */
  padding: 50px 20px;
  border-radius: 10px;
  color: #f9f5f5;
  max-width: 800px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Optional: Fade-in animation */
.about-content, .hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Newsletter signuo*/
.newsletter {
  background: #fff8e1; /* soft yellow accent */
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
  margin: 50px auto;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
}

.newsletter input[type="email"] {
  padding: 12px 15px;
  width: 70%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 1rem;

  display: block;
margin: 0 auto 15px auto;
text-align: center;
}

.newsletter button {
  padding: 12px 20px;
  background: #ffc107; /* yellow accent */
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter button:hover {
  background: #ffb300;
}


/*blog section*/
.blog-section {
  padding: 60px 20px;
  background: #000000;
  text-align: center;
}

.blog-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.blog-card {
  background: #dabcbc;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h3 {
  padding: 15px;
  font-size: 1.2rem;
}

.blog-card p {
  padding: 0 15px 15px 15px;
  font-size: 0.95rem;
  color: #555;
}

.blog-card .read-more {
  display: inline-block;
  margin: 0 15px 15px 15px;
  color: #f9a825;
  font-weight: bold;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-5px);
}



/* ---- Catering Packages ---- */
.packages {
  text-align: center;
  padding: 60px 20px;
  background: #fffbea;
}
.packages h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}
.packages p {
  font-size: 1rem;
  color: #444;
}
.package-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.package {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
  position: relative;
}
.package:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.offer-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffc107;
  color: #000;
  padding: 5px 12px;
  font-weight: bold;
  border-radius: 12px;
  font-size: 0.9rem;
}
.package h2 {
  font-size: 1.5rem;
  color: #111;
}
.items {
  margin: 15px 0;
  text-align: left;
}
.items li {
  margin: 6px 0;
  font-size: 0.95rem;
}
.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #e63946;
  margin: 15px 0;
}

  .packages .btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}
.packages .btn:hover {
  background: #ffc107;
  color: #000;
}

.package .items {
  list-style-type: disc;  /* bullet points dikhane ke liye */
  padding-left: 20px;     /* thoda left space */
  margin: 10px 0;         /* upar niche gap */
  color: #444;            /* text ka color */
  font-size: 16px;        /* readable size */
  text-align: left;       /* left aligned */
}
.package .items li {
  margin-bottom: 5px;     /* har item ke beech spacing */
}



/* === ULTRA MODERN GLASSY SALE BANNER === */
.sale-banner {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.8s ease forwards;
}

/* content box */
.banner-content {
  position: relative;
  padding: 3rem 4rem;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  text-align: center;
  color: #fff;
  overflow: hidden;
  animation: popIn 0.9s ease forwards;
}

/* subtle golden animated border glow */
.shine-border {
  position: relative;
  padding: 2rem;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 20px;
}
.shine-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, transparent, rgba(255,215,0,0.6), transparent);
  background-size: 200% 200%;
  animation: shine 3s linear infinite;
  z-index: 0;
}

/* text + buttons */
.banner-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.banner-content h2 .highlight {
  color: #fff8b0;
}
.banner-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.shop-btn {
  background: linear-gradient(135deg, gold, #ffdb58);
  color: #000;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.shop-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px gold;
}

/* close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}
.close-btn:hover {
  color: gold;
}

/* animations */
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes popIn { from {transform:scale(0.9);opacity:0;} to {transform:scale(1);opacity:1;} }
@keyframes shine {
  0% {background-position:200% center;}
  100% {background-position:-200% center;}
}
@media (max-width: 600px) {
  .banner-content {
    padding: 2rem 2.5rem;
  }
  .banner-content h2 {
    font-size: 1.8rem;
  }
  .shop-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* MOBILE FIX FOR SERVICES */

@media(max-width:768px){

.services-container{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  padding:20px;
  overflow:hidden;
}

.service-card{
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

}

/*gallery-button*/
.view-more-wrapper{
  text-align:center;
  margin-top:35px;
}

.view-more-btn{
  display:inline-block;
  padding:14px 32px;

  border:2px solid gold;
  border-radius:10px;

  color:gold;
  text-decoration:none;

  font-weight:bold;
  font-size:16px;

  transition:0.3s ease;

  background:transparent;
}

.view-more-btn:hover{
  background:gold;
  color:black;

  transform:translateY(-3px);

  box-shadow:0 0 15px rgba(255,215,0,0.4);
}


/* ================= OWNER SECTION ================= */

.owner-section{
  background:#0a0a0a;
  padding:90px 8%;
}

.owner-container{
  display:flex;
  align-items:center;
  gap:70px;
  flex-wrap:wrap;
}

.owner-image{
  flex:1;
  min-width:300px;
}

.owner-image img{
  width:100%;
  max-width:430px;
  border-radius:18px;
  display:block;
  border:3px solid #d4af37;
  box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

.owner-text{
  flex:1;
  min-width:320px;
}

.small-title{
  color:#d4af37;
  font-size:15px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:600;
}

.owner-text h2{
  color:#fff;
  font-size:52px;
  line-height:1.2;
  margin:18px 0 20px;
  font-family:'Playfair Display', serif;
}

.gold-line{
  width:90px;
  height:4px;
  background:#d4af37;
  margin-bottom:30px;
  border-radius:20px;
}

.owner-text p{
  color:#cfcfcf;
  font-size:17px;
  line-height:1.9;
  margin-bottom:20px;
}

.owner-details{
  display:flex;
  gap:20px;
  margin-top:35px;
  flex-wrap:wrap;
}

.detail-box{
  background:#111;
  padding:22px 28px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,0.2);
  min-width:170px;
  transition:0.4s;
}

.detail-box:hover{
  transform:translateY(-6px);
  border-color:#d4af37;
}

.detail-box h3{
  color:#d4af37;
  font-size:32px;
  margin-bottom:8px;
}

.detail-box span{
  color:#ddd;
  font-size:15px;
}

/* MOBILE */

@media(max-width:768px){

  .owner-section{
    padding:70px 20px;
  }

  .owner-container{
    flex-direction:column;
  }

  .owner-text{
    text-align:center;
  }

  .owner-text h2{
    font-size:34px;
  }

  .gold-line{
    margin:0 auto 25px;
  }

  .owner-details{
    justify-content:center;
  }

}



/* SOCIAL SECTION */

.social-section{
  text-align:center;
  padding:60px 20px;
  background:#000;
}

.social-section h2{
  color:#d4af37;
  font-size:38px;
  margin-bottom:35px;
  font-family:'Playfair Display', serif;
}

.social-icons{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.social-icon{
  width:80px;
  height:80px;
  background:#111;
  border:2px solid #d4af37;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.4s ease;
  box-shadow:0 0 20px rgba(212,175,55,0.2);
}

.social-icon img{
  width:40px;
  height:40px;
}

.social-icon:hover{
  transform:translateY(-10px) scale(1.08);
  background:#d4af37;
  box-shadow:0 0 30px rgba(212,175,55,0.7);
}

/* MOBILE */

@media(max-width:768px){

.social-section h2{
  font-size:30px;
}

.social-icon{
  width:70px;
  height:70px;
}

.social-icon img{
  width:35px;
  height:35px;
}

}