/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #111;
    color: white;
  }
  
  .navbar {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    color: gold;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    position: relative;
    padding: 5px;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:not(.book-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: gold;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: gold;
  }
  
  .nav-links li a:not(.book-btn):hover::after {
    width: 100%;
  }
  
  .book-btn {
    background: rgb(231, 215, 123);
    color: black !important;
    padding: 10px 25px;
    border-radius: 2px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .book-btn:hover {
    background: #e0c200;
  }
  
  .hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  #menu-toggle {
    display: none;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      top: 70px;
      left: -100%;
      flex-direction: column;
      background: rgba(0, 0, 0, 0.95);
      width: 100%;
      text-align: center;
      transition: left 0.3s ease;
      padding: 20px 0;
    }
  
    #menu-toggle:checked + .hamburger + .nav-links {
      left: 0;
    }
  
    .nav-links li {
      margin: 1px 0;
    }
  }
  




  body, html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
  }
  
  .hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=1650&q=80') no-repeat center center/cover;
    position: relative;
    color: white;
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .content {
    max-width: 800px;
  }
  
  h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: gold;
    animation: fadeInUp 1s ease forwards;
  }
  
  h1 span {
    color: white;
  }
  
  p {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #ddd;
  }
  
  .btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: gold;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: #e0c200;
  }
  
  /* Animation */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
  }
  
  .delay {
    animation-delay: 0.5s;
  }
  .delay2 {
    animation-delay: 1s;
  }


  .menu-dialog {
    display: none;
    position: fixed;
    top: 2.5%;
    left: 2.5%;
    width: 95%;
    height: 95%;
    background: linear-gradient(to bottom right, #1a1a1a, #2c2c2c);
    z-index: 9999;
    border: 2px solid gold;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .menu-dialog-content {
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    position: relative;
  }
  
  .menu-close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: gold;
    cursor: pointer;
  }
  
  .menu-title {
    color: gold;
    text-align: center;
    font-size: 36px;
    margin-top: 10px;
    margin-bottom: 25px;
    text-shadow: 0 0 8px #ffd700;
  }
  
  .menu-back-btn {
    background-color: #444;
    color: gold;
    border: 1px solid gold;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    font-size: 16px;
  }
  .menu-back-btn:hover {
    background-color: gold;
    color: black;
  }
  
  .category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .category-card {
    background: #2a2a2a;
    color: white;
    border: 1px solid gold;
    border-radius: 12px;
    padding: 20px;
    width: 240px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }
  .category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px gold;
  }
  .category-card h3 {
    margin-bottom: 8px;
    color: gold;
  }
  
  .item-list h2 {
    color: gold;
    text-align: center;
    margin-bottom: 20px;
  }
  .items-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  .item-card {
    background: #333;
    color: white;
    border: 1px solid gold;
    border-radius: 10px;
    padding: 15px;
    width: 220px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .item-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  }
  .item-card h4 {
    margin: 0;
    color: gold;
  }
  .item-card small {
    color: #aaa;
  }
  



  
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.2rem;
    }
  
    p {
      font-size: 1rem;
    }
  
    .btn {
      padding: 10px 20px;
    }
  }



  .about {
    background-color: #111;
    color: #fff;
    padding: 100px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .about-wrapper {
    max-width: 1200px;
    margin: auto;
  }
  
  .about-intro h2, .why-choose h2, .journey h2 {
    font-size: 2.8rem;
    color: gold;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .about-intro h2 span,
  .why-choose h2 span,
  .journey h2 span {
    color: white;
  }
  
  .intro-text {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    line-height: 1.8;
  }
  
  /* Cards */
  .about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
  }
  
  .about-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 30px;
    border: 1px solid gold;
    border-radius: 15px;
    width: 300px;
    transition: 0.4s ease;
  }
  
  .about-card:hover {
    background: rgba(255, 215, 0, 0.15);
  }
  
  .about-card h3 {
    color: gold;
    margin-bottom: 10px;
  }
  
  /* Why Choose Us */
  .why-choose {
    margin-bottom: 80px;
  }
  
  .features-list {
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 2.2;
    color: #ccc;
  }
  
  /* Timeline */
  .timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  
  .timeline-item {
    border-left: 3px solid gold;
    padding-left: 20px;
    max-width: 300px;
    color: #ccc;
  }
  
  .timeline-item span {
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 5px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .timeline {
      flex-direction: column;
    }
  
    .about-intro h2, .why-choose h2, .journey h2 {
      font-size: 2rem;
    }
  }
  

  .menu {
    background-color: #0a0a0a;
    color: white;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .menu-container {
    max-width: 1000px;
    margin: auto;
  }
  
  .menu-title {
    text-align: center;
    font-size: 3rem;
    color: gold;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
  }
  
  .menu-title span {
    color: white;
  }
  
  .menu-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  
  .menu-row {
    display: flex;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 14px;
    padding: 20px;
    align-items: center;
    transition: transform 0.3s ease;
  }
  
  .menu-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  }
  
  .menu-row img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 25px;
  }
  
  .menu-details h3 {
    color: gold;
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .menu-details p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .price {
    background-color: gold;
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .explore-container {
    text-align: center;
    margin-top: 50px;
  }
  
  .explore-btn {
    background: transparent;
    color: gold;
    border: 1px solid gold;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .explore-btn:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 15px gold;
  }
  





  .gallery-section {
    background-color: #0a0a0a;
    padding: 80px 20px;
    color: white;
    text-align: center;
  }
  
  .gallery-title {
    font-size: 3rem;
    color: gold;
    margin-top: -80px;
    font-family: 'Playfair Display', serif;
    
  }
  

  .lined-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
  }
  
  .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, gold, transparent);
    max-width: 120px;
  }
  
  .line1 {
    flex: 1;
    height: 2px;
    background: linear-gradient(to left, gold, transparent);
    max-width: 120px;
  }
  .gallery-titl {
    color: gold;
    font-size: 1.rem;
    font-family: 'Playfair Display',;
    font-weight: bold;
    white-space: nowrap;
    letter-spacing: 7px;
  }
  

  .gallery-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 50px;
    font-style: italic;
    letter-spacing: 1px;
  }
  
  
  .gallery-title span {
    color: white;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 1px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  
  /* Lightbox Styling */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    animation: fadeIn 0.5s ease;
  }
  
  .close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 35px;
    cursor: pointer;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    color: white;
    background-color: rgba(255, 217, 0, 0.192);
    border: none;
    font-size: 30px;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 2px ;
    transform: translateY(-50%);
  }
  
  .prev:hover, .next:hover {
    transition: 0.8s;
    background-color: rgb(193, 196, 67);
    color: black;
  }
  
  .prev { left: 30px; }
  .next { right: 30px; }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  
  @media (max-width: 600px) {
    .lined-heading {
      gap: 10px;
      margin: 20px 0;
    }
  
    .gallery-titl {
      font-size: 0.5rem;
    }
  
    .line {
      max-width: 60px;
    }
  }








  .today-special {
    background: radial-gradient(circle at top, #111 0%, #000 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .special-container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
  }
  
  .special-heading {
    font-size: 2.8rem;
    color: gold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .special-subtext {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 50px;
  }
  
  .special-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(15px);
    margin-bottom: 30px;
    height: 300px;
  }
  
  .special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.3);
  }
  
  .special-card img {
    width: 350px;
    height: 200px;
    object-fit: cover;
    border-right: 2px solid gold;
    filter: brightness(1.1);
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .special-info {
    padding: 20px 30px;
    text-align: left;
  }
  
  .special-info h3 {
    color: gold;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .special-info p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .special-btn {
    margin-top: 20px;
    background: linear-gradient(to right, gold, #ffdd00);
    color: black;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  }
  
  .special-btn:hover {
    background: #fff200;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.4);
  }
  
  /* 📱 Responsive Design */
  @media (max-width: 768px) {
    .special-card {
      flex-direction: column;
      text-align: center;
      height: 400px;
    }
  
    .special-card img {
      border-right: none;
      border-bottom: 2px solid gold;
      width: 100%;
      height: 200px;
    }
  
    .special-info {
      padding: 20px;
    }
    .special-heading{
        font-size: 1.5rem;
    }
  }
  


  .reviews-section {
    background: linear-gradient(to bottom, #111, #000);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .reviews-heading {
    font-size: 2.5rem;
    color: gold;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  }
  
  .review-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    width: 300px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
  }
  
  .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid gold;
    margin-bottom: 15px;
  }
  
  .review-card h3 {
    color: gold;
    font-size: 1.2rem;
    margin: 10px 0;
  }
  
  .review-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .stars {
    color: gold;
    font-size: 1.2rem;
  }
  
  /* 📱 Responsive Design */
  @media (max-width: 768px) {
    .review-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .review-card {
      width: 90%;
    }
  }
  



  .footer {
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 60px;
    padding-bottom: 20px;
    border-top: 3px solid gold;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  
  .footer h2 {
    color: gold;
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .footer-section p {
    color: #ccc;
    line-height: 1.6;
    max-width: 300px;
  }
  
  .footer-section h3 {
    color: gold;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: gold;
  }
  
  .social-icons a {
    color: gold;
    font-size: 18px;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  /* Contact Form */
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    padding: 10px;
    margin-bottom: 10px;
    color: #fff;
    border-radius: 5px;
    resize: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: gold;
    outline: none;
  }
  
  .contact-form button {
    background: gold;
    color: #000;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .contact-form button:hover {
    background: #fff;
    color: #000;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
    color: #888;
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      margin-left: 20px;
    }
  
    .footer-section {
      max-width: 90%;
    }
  
    .contact-form input,
    .contact-form textarea {
      width: 100%;
    }
  }
  