/*********************************************************/
/*CSS MODE - MRPSTUDIO 2026
/*********************************************************/
/*CORES*/
:root {
      --bg-dark: #12100c;
      --bg-panel: #1c1812;
      --bg-card: #232019;
      --gold: #c9a227;
      --gold-light: #e0bc45;
      --rust: #d4863b;
      --rust-dark: #a85e1e;
      --cream: #f5e6c8;
      --muted: #a89b87;
      --white: #fff;
      --shadow: 0 10px 30px rgba(0,0,0,0.45);
      --radius: 16px;
      --transition: 0.25s ease;
      --max-width: 1200px;
      --nav-height: 64px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--bg-dark);
      color: var(--cream);
      line-height: 1.6;
    }

    h1, h2, h3, .logo {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }

    a { text-decoration: none; color: inherit; }
/*********************************************************/
    header {
      position: relative;
      min-height: 80vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
    }

    header .tagline {
      color: var(--gold);
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 0.85rem;
      margin-bottom: 1rem;
      animation: fadeInDown 1s ease;
    }

    header h1 {
      font-size: clamp(2rem, 6vw, 3.5rem);
      color: var(--cream);
      line-height: 1.1;
      text-shadow: 0 4px 25px rgba(0,0,0,0.5);
      animation: fadeInUp 1s ease 0.2s both;
    }

    header .subtitle {
      max-width: 700px;
      margin-top: 1.5rem;
      font-size: 1.15rem;
      color: var(--muted);
      animation: fadeInUp 1s ease 0.4s both;
    }

    header .hours {
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(201, 162, 39, 0.12);
      border: 1px solid rgba(201, 162, 39, 0.35);
      color: var(--gold-light);
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      font-weight: 500;
      font-size: 0.95rem;
      animation: fadeInUp 1s ease 0.6s both;
    }
/*********************************************************/
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(28, 24, 18, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201, 162, 39, 0.18);
      height: var(--nav-height);
    }

    .nav-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1rem;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    nav .logo {
      font-size: 1.25rem;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    nav .logo svg {
      width: 26px;
      height: 26px;
      fill: var(--gold);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 0.4rem;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    nav ul::-webkit-scrollbar { display: none; }

    nav li a {
      display: block;
      white-space: nowrap;
      padding: 0.55rem 0.85rem;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--muted);
      transition: var(--transition);
      border: 1px solid transparent;
    }

    nav li a:hover,
    nav li a.active {
      color: var(--gold);
      background: rgba(201, 162, 39, 0.12);
      border-color: rgba(201, 162, 39, 0.35);
    }
/*********************************************************/
    main {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 3rem 1rem 5rem;
    }

    section {
      margin-bottom: 4rem;
      scroll-margin-top: calc(var(--nav-height) + 1rem);
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .section-header h2 {
      font-size: clamp(1.7rem, 4vw, 2.4rem);
      color: var(--gold);
    }

    .section-header .line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, var(--rust), transparent);
    }

    .section-desc {
      color: var(--muted);
      margin-bottom: 1.8rem;
      max-width: 700px;
    }
/*********************************************************/
    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }

    .card {
      background: var(--bg-card);
      border: 1px solid rgba(201, 162, 39, 0.12);
      border-radius: var(--radius);
      padding: 1.3rem 1.4rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      position: relative;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--rust));
      opacity: 0.4;
      transition: opacity var(--transition);
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      border-color: rgba(201, 162, 39, 0.4);
    }

    .card:hover::before { opacity: 1; }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }

    .card h3 {
      font-size: 1.15rem;
      color: var(--cream);
      line-height: 1.3;
    }

    .card .price {
      flex-shrink: 0;
      font-weight: 600;
      color: var(--gold);
      font-size: 1.05rem;
    }

    .card p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .card .badge {
      margin-top: auto;
      align-self: flex-start;
      font-size: 0.75rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: rgba(212, 134, 59, 0.14);
      color: var(--rust);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
/*********************************************************/
    .buffet-card .days {
      display: block;
      color: var(--muted);
      font-size: 0.85rem;
      margin-top: 0.25rem;
    }
/*********************************************************/
    #backToTop {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, var(--gold), var(--rust));
      color: var(--bg-dark);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: var(--transition);
      box-shadow: 0 6px 20px rgba(0,0,0,0.35);
      z-index: 999;
    }

    #backToTop.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    #backToTop:hover { transform: translateY(-3px) scale(1.05); }

    #backToTop svg { width: 22px; height: 22px; fill: currentColor; }
/*********************************************************/
    footer {
      text-align: center;
      padding: 2.5rem 1rem;
      background: var(--bg-panel);
      border-top: 1px solid rgba(201, 162, 39, 0.12);
      color: var(--muted);
      font-size: 0.9rem;
    }

    footer strong { color: var(--gold); }
/*********************************************************/
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
/*********************************************************/
    @media (max-width: 768px) {
      header { min-height: 70vh; }
      nav .logo span { display: none; }
      nav ul { gap: 0.25rem; }
      nav li a { padding: 0.5rem 0.7rem; font-size: 0.8rem; }
      .grid { grid-template-columns: 1fr; }
      main { padding: 2rem 1rem 4rem; }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .grid { grid-template-columns: repeat(2, 1fr); }
    }
/*********************************************************/
