*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary: #c8a97e;
    --primary-dark: #b69669;
    --secondary: #1a1a1a;
    --light: #f8f9fa;
    --dark: #333;
    --white: #fff;
    --gray: #6c757d;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
  }
  
  h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
  }
  
  h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: var(--primary);
  }
  
  h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  
  h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray);
  }
  
  /* Utility classes */
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-dark);
    transition: var(--transition);
    z-index: -1;
  }
  
  .btn:hover::before {
    width: 100%;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
  }
  
  .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-right {
    text-align: right;
  }
  
  .section {
    padding: 8rem 0;
    position: relative;
  }
  
  .section-light {
    background-color: var(--light);
  }
  
  .section-dark {
    background-color: var(--secondary);
    color: var(--white);
  }
  
  .section-dark h2, 
  .section-dark h3 {
    color: var(--white);
  }
  
  .section-title {
    margin-bottom: 4rem;
  }
  
  .section-title h2 {
    display: inline-block;
  }
  
  .text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .grid {
    display: grid;
    gap: 2rem;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .flex {
    display: flex;
  }
  
  .flex-center {
    justify-content: center;
    align-items: center;
  }
  
  .flex-between {
    justify-content: space-between;
    align-items: center;
  }
  
  .mt-1 { margin-top: 1rem; }
  .mt-2 { margin-top: 2rem; }
  .mt-3 { margin-top: 3rem; }
  .mt-4 { margin-top: 4rem; }
  .mt-5 { margin-top: 5rem; }
  
  .mb-1 { margin-bottom: 1rem; }
  .mb-2 { margin-bottom: 2rem; }
  .mb-3 { margin-bottom: 3rem; }
  .mb-4 { margin-bottom: 4rem; }
  .mb-5 { margin-bottom: 5rem; }
  
  /* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
  }
  
  header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
  }
  
  header.scrolled .logo,
  header.scrolled nav ul li a {
    color: var(--secondary);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition);
  }
  
  .logo span {
    color: var(--primary);
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 2.5rem;
  }
  
  nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
  }
  
  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
  }
  
  nav ul li a:hover::after,
  nav ul li a.active::after {
    width: 100%;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: var(--primary);
  }
  
  .mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
  }
  
  /* Restaurant Hero Section */
  .restaurant-hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
  }
  
  .restaurant-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
  }
  
  .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .restaurant-hero h1 {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
  }
  
  .restaurant-hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
  }
  
  .restaurant-hero .btn {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
  }
  
  .scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 1;
  }
  
  /* Restaurant About Section */
  .restaurant-content {
    padding: 2rem;
  }
  
  .restaurant-content h2::after {
    width: 80px;
  }
  
  .restaurant-img {
    position: relative;
    height: 100%;
  }
  
  .restaurant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: var(--shadow-strong);
  }
  
  .restaurant-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary);
    border-radius: 5px;
    z-index: -1;
  }
  
  .restaurant-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
  }
  
  .stat-text {
    font-size: 1.1rem;
    color: var(--gray);
  }
  
  /* Dining Experiences */
  .dining-experiences {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
  }
  
  .experience-card {
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
  }
  
  .experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
  }
  
  .experience-img {
    height: 250px;
    overflow: hidden;
    position: relative;
  }
  
  .experience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }
  
  .experience-card:hover .experience-img img {
    transform: scale(1.1);
  }
  
  .experience-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 3px;
    font-weight: 500;
  }
  
  .experience-info {
    padding: 2rem;
  }
  
  .experience-details {
    margin: 1.5rem 0;
  }
  
  .detail-item {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray);
  }
  
  /* Menu Section */
  .menu-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
  }
  
  .menu-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    font-family: 'Poppins', sans-serif;
  }
  
  .menu-btn.active,
  .menu-btn:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  
  .menu-category {
    display: none;
  }
  
  .menu-category.active {
    display: block;
  }
  
  .menu-items {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .menu-item {
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
  }
  
  .menu-item:last-child {
    border-bottom: none;
  }
  
  .menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .menu-item h4 {
    margin-bottom: 0;
    color: var(--secondary);
  }
  
  .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
  }
  
  /* CTA Section */
  .cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 8rem 0;
    position: relative;
  }
  
  .cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(200, 169, 126, 0.4), rgba(26, 26, 26, 0.6));
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  
  .cta h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
  }
  
  .cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }
  
  /* Footer */
  footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 5rem 0 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--white);
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: var(--primary);
  }
  
  .footer-about p {
    color: #aaa;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: block;
  }
  
  .footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
  }
  
  .footer-contact {
    list-style: none;
  }
  
  .footer-contact li {
    margin-bottom: 1rem;
    color: #aaa;
    display: flex;
    align-items: flex-start;
  }
  
  .footer-contact i {
    margin-right: 1rem;
    color: var(--primary);
  }
  
  .footer-newsletter p {
    color: #aaa;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 1.5rem;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 3px 0 0 3px;
    font-family: 'Poppins', sans-serif;
  }
  
  .newsletter-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .newsletter-btn:hover {
    background-color: var(--primary-dark);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
  }
  
  /* Animations */
  @keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
  }
  
  @media (max-width: 992px) {
    .section {
        padding: 6rem 0;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .restaurant-img::before {
        display: none;
    }
    
    .restaurant-stats,
    .chef-awards {
        grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 2rem;
        transition: var(--transition);
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav ul {
        flex-direction: column;
        margin-top: 3rem;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    nav ul li a {
        color: var(--secondary);
    }
    
    nav.active {
        right: 0;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .menu-nav {
        flex-direction: column;
    }
    
    .menu-btn {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .menu-btn.active,
    .menu-btn:hover {
        border-bottom: 1px solid var(--primary);
    }
    
    .reservation-form {
        flex-direction: column;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price {
        margin-top: 0.5rem;
    }
  }
  
  @media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .restaurant-hero p {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .experience-info,
    .restaurant-content,
    .chef-content {
        padding: 1.5rem;
    }
  }
  
  /* Additional Restaurant-specific Enhancements */
  .menu-item:hover {
    background-color: rgba(200, 169, 126, 0.05);
    padding-left: 1rem;
    transition: var(--transition);
  }
  
  .experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(45deg, rgba(200, 169, 126, 0.1), rgba(26, 26, 26, 0.05));
    transition: var(--transition);
    z-index: 1;
  }
  
  .experience-card:hover::before {
    height: 100%;
  }
  
  .experience-info {
    position: relative;
    z-index: 2;
  }
  
  /* Loading animation for menu switching */
  .menu-category {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .menu-category.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Smooth scroll offset for fixed header */
  #restaurant-about,
  #menu
   {
    scroll-margin-top: 100px;
  }