      :root {
      --gold: #c5a059;
      --gold-light: #d4b06a;
      --dark-bg: #0b0c10;
      --dark-secondary: #1a1a2e;
      --dark-card: #16161a;
      --text-light: #f5f5f5;
      --text-muted: #a0a0a0;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--dark-bg);
      color: var(--text-light);
      line-height: 1.6;
    }



    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }

    /* Navbar */
    .navbar {
      padding: 1rem 2rem;
      transition: all 0.4s ease;
      background: transparent !important;
    }

    .navbar.scrolled {
      background: rgba(11, 12, 16, 0.98) !important;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
      padding: 0.75rem 2rem;
    }

    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--gold) !important;
    }

    .nav-link {
      color: var(--text-light) !important;
      font-weight: 500;
      padding: 0.5rem 1rem !important;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-link:hover::after {
      width: 60%;
    }

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

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--dark-bg);
      font-weight: 600;
      padding: 0.75rem 2rem;
      border: none;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
      color: var(--dark-bg);
    }

    .btn-outline-gold {
      border: 2px solid var(--gold);
      color: var(--gold);
      font-weight: 600;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      background: transparent;
      transition: all 0.3s ease;
    }

    .btn-outline-gold:hover {
      background: var(--gold);
      color: var(--dark-bg);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: -2;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(11, 12, 16, 0.7), rgba(11, 12, 16, 0.7));
      z-index: -1;
    }

    .hero-content {
      text-align: center;
      z-index: 1;
      padding: 0 1rem;
    }

    .hero-subtitle {
      color: var(--gold);
      font-size: 1.1rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .hero-title {
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.1;
    }

    .hero-title span {
      color: var(--gold);
    }

    .hero-description {
      font-size: 1.25rem;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto 2.5rem;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
    }

    .scroll-indicator i {
      font-size: 2rem;
      color: var(--gold);
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
      40% { transform: translateX(-50%) translateY(-10px); }
      60% { transform: translateX(-50%) translateY(-5px); }
    }

    /* Section Styling */
    section {
      padding: 6rem 0;
    }

    .section-subtitle {
      color: var(--gold);
      font-size: 0.9rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1rem;
    }

    .section-divider {
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 1.5rem auto;
    }

    /* About Section */
    .about-section {
      background: var(--dark-bg);
    }

    .about-images {
      position: relative;
      height: 500px;
    }

    .about-img-1 {
      position: absolute;
      top: 0;
      left: 0;
      width: 65%;
      height: 70%;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .about-img-2 {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 55%;
      height: 60%;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      border: 4px solid var(--gold);
    }

    .about-badge {
      position: absolute;
      bottom: 20%;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--dark-bg);
      padding: 1.5rem;
      border-radius: 50%;
      width: 120px;
      height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: 700;
      box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
    }

    .about-badge span {
      font-size: 2rem;
      line-height: 1;
    }

    .about-badge small {
      font-size: 0.75rem;
      text-transform: uppercase;
    }

    .about-text {
      color: var(--text-muted);
      font-size: 1.1rem;
      line-height: 1.8;
    }

    /* Services Section */
    .services-section {
      background: var(--dark-secondary);
    }

    .service-card {
      background: var(--dark-card);
      border-radius: 15px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.4s ease;
      height: 100%;
      border: 1px solid transparent;
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: var(--gold);
      box-shadow: 0 20px 50px rgba(197, 160, 89, 0.15);
    }

    .service-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.05));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      transition: all 0.4s ease;
    }

    .service-icon i {
      font-size: 2rem;
      color: var(--gold);
    }

    .service-card:hover .service-icon {
      background: var(--gold);
    }

    .service-card:hover .service-icon i {
      color: var(--dark-bg);
    }

    .service-card h4 {
      margin-bottom: 1rem;
      font-size: 1.25rem;
    }

    .service-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    /* Hours Section */
    .hours-section {
      background: var(--dark-bg);
    }

    .hours-card {
      background: var(--dark-card);
      border-radius: 20px;
      padding: 3rem;
      border: 1px solid rgba(197, 160, 89, 0.2);
    }

    .hours-table {
      width: 100%;
    }

    .hours-table tr {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hours-table tr:last-child {
      border-bottom: none;
    }

    .hours-table td {
      padding: 1rem 0;
      font-size: 1.1rem;
    }

    .hours-table td:last-child {
      text-align: right;
      color: var(--gold);
      font-weight: 500;
    }

    .meal-deal {
      background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(197, 160, 89, 0.05));
      border-radius: 15px;
      padding: 2rem;
      margin-top: 2rem;
      border: 1px solid var(--gold);
    }

    .meal-deal h4 {
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .meal-deal p {
      margin-bottom: 0;
      color: var(--text-muted);
    }

    .event-banner {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 20px;
      padding: 3rem;
      color: var(--dark-bg);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .event-banner h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .event-banner p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      opacity: 0.9;
    }

    .event-banner .btn {
      background: var(--dark-bg);
      color: var(--gold);
      border: none;
      font-weight: 600;
    }

    .event-banner .btn:hover {
      background: var(--dark-secondary);
      color: var(--gold);
    }

    /* Menu Section */
    .menu-section {
      background: var(--dark-secondary);
    }

    .menu-card {
      background: var(--dark-card);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s ease;
      height: 100%;
    }

    .menu-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    }

    .menu-card-img {
      height: 250px;
      overflow: hidden;
    }

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

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

    .menu-card-body {
      padding: 2rem;
    }

    .menu-card-body h4 {
      margin-bottom: 0.5rem;
    }

    .menu-card-body .price {
      color: var(--gold);
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .menu-card-body p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    /* Menu Modal */
    .modal-content {
      background: var(--dark-card);
      border: 1px solid rgba(197, 160, 89, 0.3);
      border-radius: 20px;
    }

    .modal-header {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem 2rem;
    }

    .modal-title {
      color: var(--gold);
    }

    .btn-close {
      filter: invert(1);
    }

    .modal-body {
      padding: 2rem;
      max-height: 70vh;
      overflow-y: auto;
    }

    .menu-category {
      margin-bottom: 2.5rem;
    }

    .menu-category:last-child {
      margin-bottom: 0;
    }

    .menu-category h4 {
      color: var(--gold);
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 1rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    }

    .menu-item:last-child {
      border-bottom: none;
    }

    .menu-item-info h5 {
      font-family: 'Inter', sans-serif;
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
    }

    .menu-item-info p {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    .menu-item-price {
      color: var(--gold);
      font-weight: 600;
      font-size: 1.1rem;
      white-space: nowrap;
      margin-left: 1rem;
    }

    /* Reviews Section */
    .reviews-section {
      background: var(--dark-bg);
    }

    .review-card {
      background: var(--dark-card);
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      transition: all 0.4s ease;
      border: 1px solid transparent;
    }

    .review-card:hover {
      border-color: rgba(197, 160, 89, 0.3);
      transform: translateY(-5px);
    }

    .review-stars {
      color: var(--gold);
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .review-text {
      font-style: italic;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .review-avatar {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--dark-bg);
    }

    .review-author-info h5 {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .review-author-info small {
      color: var(--text-muted);
    }

    /* Gallery Section */
    .gallery-section {
      background: var(--dark-secondary);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    @media (max-width: 991px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      aspect-ratio: 1;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(197, 160, 89, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay i {
      font-size: 2rem;
      color: var(--dark-bg);
    }

    /* Contact Section */
    .contact-section {
      background: var(--dark-bg);
    }

    .contact-info-card {
      background: var(--dark-card);
      border-radius: 20px;
      padding: 3rem;
      height: 100%;
    }

    .contact-item {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .contact-item:last-child {
      margin-bottom: 0;
    }

    .contact-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.05));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon i {
      font-size: 1.5rem;
      color: var(--gold);
    }

    .contact-item-info h5 {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      margin-bottom: 0.5rem;
      color: var(--gold);
    }

    .contact-item-info p,
    .contact-item-info a {
      color: var(--text-muted);
      font-size: 1rem;
      margin-bottom: 0;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-item-info a:hover {
      color: var(--gold);
    }

    .map-container {
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      min-height: 400px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(100%) invert(92%) contrast(83%);
    }

    /* Footer */
    footer {
      background: var(--dark-secondary);
      padding: 3rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
    }

    .footer-copyright {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    .footer-social a {
      width: 45px;
      height: 45px;
      background: var(--dark-card);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background: var(--gold);
      color: var(--dark-bg);
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
      .about-images {
        height: 400px;
        margin-bottom: 3rem;
      }

      .hero-title {
        font-size: 3rem;
      }
    }

    @media (max-width: 767px) {
      section {
        padding: 4rem 0;
      }

      .navbar {
        padding: 1rem;
      }

      .about-images {
        height: 350px;
      }

      .about-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
      }

      .about-badge span {
        font-size: 1.5rem;
      }

      .hours-card,
      .event-banner,
      .contact-info-card {
        padding: 2rem;
      }

      .footer-content {
        flex-direction: column;
        text-align: center;
      }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: var(--dark-bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--gold-light);
    }