.restaurant-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #050506, #0b0b0c);
  color: var(--white);
}

.restaurant-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.restaurant-header h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}

.restaurant-header p {
  color: var(--muted);
  font-size: 16px;
}

.menu-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.menu-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.menu-card:hover {
  transform: translateY(-6px);
}

.menu-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.menu-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-info h3 {
  margin: 0;
  font-size: 18px;
}

.menu-info p {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.menu-info .btn {
  margin-top: 8px;
  width: 100%;
  text-align: center;
}




/*about us page*/
.about-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #0b0b0c, #111111);
  color: var(--white);
}

.about-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.about-header h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}

.about-header p {
  color: var(--muted);
  font-size: 16px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 24px;
}

.about-cards .card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.about-cards .card:hover {
  transform: translateY(-6px);
}

.about-cards .card h3 {
  margin-bottom: 8px;
  color: var(--accent);
}

.about-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

/*about timeline*/
.about-timeline-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #050506, #0b0b0c);
  color: var(--white);
}

.timeline-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.timeline-header h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}

.timeline-header p {
  color: var(--muted);
  font-size: 16px;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--accent);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 20px 30px;
  position: relative;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--accent);
  border: 3px solid #0b0b0c;
  top: 24px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-item .content {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s;
}

.timeline-item .content:hover {
  transform: translateY(-6px);
}

.timeline-item h3 {
  margin-top: 0;
  color: var(--accent);
}

.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}



/*staff team*/
.staff-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #0b0b0c, #111111);
  color: var(--white);
}

.staff-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.staff-header h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}

.staff-header p {
  color: var(--muted);
  font-size: 16px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.staff-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  text-align: center;
  padding-bottom: 16px;
  transition: transform 0.3s;
}

.staff-card:hover {
  transform: translateY(-6px);
}

.staff-img {
  width: 100%;
  height: 280px;
  border-radius: 12px 12px 0 0;
  background-size: cover;
  background-position: center;
}

.staff-card h3 {
  margin: 12px 0 4px;
  font-size: 18px;
}

.staff-card p {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.staff-socials {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.staff-card:hover .staff-socials {
  opacity: 1;
}

.staff-socials a {
  color: var(--white);
  font-size: 16px;
  transition: color 0.3s;
}

.staff-socials a:hover {
  color: var(--accent);
}


/*service section*/
.services-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #0b0b0c, #111111);
  color: var(--white);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.services-header h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}

.services-header p {
  color: var(--muted);
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(245,158,11,0.05), rgba(255,214,107,0.05));
}

.service-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-card h3 {
  margin: 16px 0 8px;
  font-size: 18px;
  color: var(--white);
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  padding: 0 12px 16px;
}




.lux-gallery-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #0b0b0c, #111111);
  color: var(--white);
}

.gallery-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.gallery-header h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}

.gallery-header p {
  color: var(--muted);
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(245,158,11,0.3);
}

/* Modal styles */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(11,11,12,0.95);
  backdrop-filter: blur(5px);
  transition: opacity 0.4s;
}

.gallery-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.gallery-modal .close-modal:hover {
  color: var(--accent);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
  border-radius: 12px;
  animation: zoomIn 0.4s;
}

@keyframes zoomIn {
  from {transform: scale(0.7); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/*testmonials*/
.testimonial-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #0b0b0c, #111111);
  color: var(--white);
}

.testimonial-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.testimonial-header h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}

.testimonial-header p {
  color: var(--muted);
  font-size: 16px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(245,158,11,0.25);
}

.customer-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--accent);
}

.quote {
  font-style: italic;
  margin-bottom: 12px;
  color: var(--muted);
}

.customer-name {
  font-weight: 600;
  color: var(--white);
}


/*slider landing*/
.hero-slider {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 1s ease;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #34e123;
  max-width: 600px;
  z-index: 2;
}

.slide-content h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 12px;
  color: #34e123;
}

.slide-content p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: bold;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots .dot.active {
  background: var(--accent, green);
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;   /* <-- ensures background is visible */
  background-size: cover; /* makes image fill */
  background-position: center; /* keeps image centered */
  background-repeat: no-repeat;
  z-index: 1;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  font-size: 20px;
  background: var(--accent, green);
  color: #0b0b0c;
  border: none;
  border-radius: 50%;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: none; /* hidden by default */
  transition: opacity 0.4s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}



.lux-footer {
  background: #0b0b0c;
  color: #ddd;
  padding: 60px 20px 20px;
  font-family: "Georgia", serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h2 {
  font-size: 24px;
  color: green;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: #aaa;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: green;
}

.footer-contact p,
.footer-links ul li a {
  font-size: 14px;
  color: #ccc;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: green;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.footer-social a {
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: green;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}


/*about landing*/
.about-section {
  position: relative;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
}

/* Background video */
.about-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay for readability */
.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

/* Content */
.about-container {
  max-width: 800px;
  padding: 20px;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

.about-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: green;
  font-family: "Georgia", serif;
}

.about-container p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #f5f5f5;
}

.highlight {
  color: green;
  font-weight: bold;
}

.btn.primary {
  background: green;
  color: #0b0b0c;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary:hover {
  background: #0b0b0c;
  color: green;
  transform: translateY(-2px);
}

/* Fade animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*flyer*/
.flyer {
  display: flex;
  justify-content: center; /* Default: center on big screens */
  margin: 20px auto;
}

.flyer img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* optional for elegance */
}


section.container > div {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 20px;
}

/* Make inputs/textarea full width */
#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}