/* ================================
   CSS Variables & Base Reset
   ================================ */
:root {
  --charcoal: #0b0f14;
  --light-charcoal: #141b23;
  --gold: #d4af37;
  --soft-gold: #f1d27a;
  --off-white: #f8f6f1;
  --light-gray: #cfcfcf;
  --dark-text: #101010;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  background-color: var(--off-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Garamond', serif;
  color: var(--dark-text);
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* hero section */


.heroimg{
  background-image: url('./assets/poster\ 1.jpeg');
  background-size: cover;
  background-position: center center;
  height: 80vh;
  object-fit:cover;

}

/* ================================
   Utility
   ================================ */
.no-scroll {
  overflow: hidden;
}

.brand-gold {
  color: var(--gold);
}

/* ================================
   Buttons
   ================================ */
.myBtn {
  padding: 10px 20px;
  background-color: var(--gold);
  color: white;
  border: none;
  font-size: 11px;
  font-weight: bold;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.myBtn:hover {
  background-color: var(--soft-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.button-Link {
  text-decoration: none;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--charcoal);
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
}

.btn-gold:hover {
  background-color: var(--soft-gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold-fill {
  background-color: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-gold-fill:hover {
  background-color: transparent;
  color: var(--gold);
}

.btn-outline-gold {
  border: 1px solid #c5a059;
  color: #c5a059;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: #c5a059;
  color: #0a0a0a;
}

/* ================================
   WhatsApp Float Button
   ================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  background-color: #128c7e;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

/* ================================
   Navigation
   ================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

#navbar {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--light-charcoal) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  padding: 15px 10px;
  color: white;
}

.mylist {
  width: 42%;
}

.mylist ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.mylist ul li {
  font-size: 11px;
}

.logo {
  width: 38%;
}

.logo a {
  display: inline-block;
}

.contactBtn {
  width: 17%;
  display: flex;
  justify-content: flex-end;
}

.contactBtn button,
.Btn-2 {
  padding: 10px 30px;
  background-color: var(--gold);
  color: white;
  border: none;
  font-size: 13px;
  font-weight: bold;
  border-radius: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.Btn-2 {
  font-size: 11px;
}

.contactBtn button:hover,
.Btn-2:hover {
  background-color: var(--soft-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.bar {
  border: none;
  background: none;
  cursor: pointer;
}

.bar i {
  color: white;
  display: none;
  font-size: 15px;
}

#click {
  display: none;
}

.list {
  background-color: black;
  color: white;
  display: none;
}

.list ul {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.nav-link {
  color: #ffffff !important;
  transition: color 0.3s ease;
  position: relative;
  font-size: 14px;
  margin-left: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

/* ================================
   Carousel
   ================================ */
.previous,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.myicon {
  background-color: var(--gold);
  padding: 4px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.myicon1 {
  background-color: black;
  padding: 4px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0);
}

/* ================================
   Section Titles
   ================================ */
.section-title {
  font-size: 2.8rem;
  font-family: 'Georgia', serif;
  color: var(--charcoal);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--gold);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* ================================
   Services Section
   ================================ */
.services-section {
  background: white;
  padding: 80px 0;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.service-icon {
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--charcoal);
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ================================
   Menu Section
   ================================ */
.menu-section {
  background: var(--off-white);
  padding: 80px 0;
}

.menu-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.menu-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-card:hover .menu-image img {
  transform: scale(1.05);
}

.menu-content {
  padding: 20px;
  text-align: center;
}

.menu-content h3,
.menu-content h4 {
  color: var(--charcoal);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.menu-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ================================
   Process Section
   ================================ */
.process-section {
  background: white;
  padding: 80px 0;
}

.process-step {
  padding: 40px 30px;
  background: var(--off-white);
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--light-gray);
}

.process-step:hover {
  border-color: var(--gold);
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--soft-gold));
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials-section {
  background: var(--off-white);
  padding: 80px 0;
}

.testimonial-card {
  background: white;
  padding: 50px 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--gold);
}

.testimonial-text {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.test-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

/* ================================
   Booking Form
   ================================ */
.booking-section {
  background: white;
  padding: 80px 0;
}

.booking-form {
  background: var(--off-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-label {
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.form-control,
.form-select {
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
  color: #aaa;
}

/* ================================
   Footer
   ================================ */
.footer-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--light-charcoal) 100%);
  color: white;
}

.footer-section h5,
.footer-section h6 {
  color: white;
  font-size: 1.1rem;
}

.footer-section h6 i {
  color: var(--gold);
}

.footer-section p {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-section a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--soft-gold);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-1,
.social-2,
.social-3 {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-1:hover,
.social-2:hover,
.social-3:hover {
  transform: scale(1.1);
}

.social-link i {
  font-size: 18px;
}

/* ================================
   Animations
   ================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================
   Responsive - Tablet
   ================================ */
@media (min-width: 769px) and (max-width: 1300px) {
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
}

@media(min-width: 650px) and (max-width:992px){
  .heroimg{

    background-image: url('./assets/poster\ medium.png');
  }
}

@media (max-width:650px){
  .heroimg{

    background-image: url('./assets/poster\ small.png');
  }
}



/* ================================
   Responsive - Mobile
   ================================ */
@media (max-width: 768px) {

  body:has(#click:checked) {
    overflow: hidden;
  }

  
  .logo {
    width: 95%;
    display: flex;
    justify-content: center;
    padding-left: 30px;
  }

  .contactBtn {
    display: none;
  }

  .mylist {
    display: none;
  }

  .bar i {
    display: block;
  }

  .bar {
    margin-left: auto;
  }

  .list {
    display: block;
    position: fixed;
    top: 108px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 108px);
    text-align: center;
    transition: left 0.5s ease;
    /* FIX: tighter top padding so items start higher */
    padding-top: 10px;
    padding-right: 10px;
    overflow-y: auto;
  }

  #click:checked ~ .list {
    left: 0;
  }

  /* FIX: stack items with controlled gap, no extra stretching */
  .list ul {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  /* FIX: each nav item gets consistent, compact padding */
  .list ul li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .list ul li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* FIX: nav links inside mobile menu - no extra margin */
  .list .nav-link {
    margin-left: 0;
    font-size: 16px;
    display: block;
    padding: 4px 0;
  }

  /* FIX: Contact button spacing in mobile menu */
  .list .ps-4 {
    padding-left: 0 !important;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .sections {
    border-bottom: 1px solid gray;
  }

  .last {
    border-bottom: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-section,
  .menu-section,
  .process-section,
  .testimonials-section,
  .booking-section {
    padding: 50px 0;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .booking-form {
    padding: 20px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .logo {
    padding-left: 0;
    width: 90%;
  }

  .list {
    padding-right: 55px;
  }

  .sections {
    padding-left: 30px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .service-card,
  .process-step,
  .menu-card {
    padding: 20px;
  }
}