@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500;600&plus+Jakarta+Sans:wght@500;700&display=swap");

:root {
      --primary-blue: #1d4ed8;
      --accent-lime: #84cc16;
      --white: #ffffff;
      --black: #000000;
      --gray-light: #f5f5f5;
      --gray-medium: #e0e0e0;
      --gray-dark: #333333;
    }

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

    html, body {
      font-family: 'Inter', sans-serif;
      color: var(--gray-dark);
      background-color: var(--white);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      color: var(--black);
    }

    h1 {
      font-size: 3.5rem;
      margin-bottom: 0.5rem;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 0.75rem;
    }

    h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1.25rem;
      line-height: 1.7;
    }

    a {
      color: var(--primary-blue);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--accent-lime);
    }

    /* Header & Navigation */
    header {
      background-color: var(--white);
      border-bottom: 1px solid var(--gray-medium);
      padding: 1.5rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header nav {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .brand {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--black);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--gray-dark);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      transition: all 0.3s ease;
    }

    nav a:hover {
      background-color: var(--gray-light);
      color: var(--primary-blue);
    }

    nav a.active {
      background-color: var(--primary-blue);
      color: var(--white);
    }

    /* Main Content */
    main {
      max-width: 1200px;
      margin: 0 auto;
    }

    section {
      padding: 4rem 2rem;
    }

    /* Hero Section */
    #hero {
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: flex-end;
      padding: 0;
      overflow: hidden;
    }

    .hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      padding: 3rem 2rem;
      max-width: 600px;
      color: var(--white);
    }

    .hero-content h1 {
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    .hero-content .subheading {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 2rem;
      color: var(--accent-lime);
    }

    /* Concept Section */
    #concept {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .concept-text {
      order: 2;
    }

    .concept-image {
      order: 1;
      height: 400px;
    }

    .concept-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .concept-text h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--accent-lime);
      margin-top: 1rem;
    }

    /* Dining Experience Section */
    #dining_experience {
      background-color: var(--gray-light);
    }

    .dining-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }

    .dining-card {
      background-color: var(--white);
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .dining-card h3 {
      color: var(--primary-blue);
      margin-bottom: 1rem;
    }

    .dining-image {
      height: 250px;
      margin-bottom: 1.5rem;
    }

    .dining-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 4px;
    }

    /* Stats Section */
    #ambiance_stats {
      background-color: var(--primary-blue);
      color: var(--white);
      padding: 5rem 2rem;
      text-align: center;
    }

    #ambiance_stats h2 {
      color: var(--white);
      margin-bottom: 3rem;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .stat-item {
      padding: 1.5rem;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent-lime);
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.95rem;
      opacity: 0.95;
    }

    .pull-quote {
      background-color: rgba(255,255,255,0.1);
      border-left: 4px solid var(--accent-lime);
      padding: 2rem;
      margin: 2rem 0;
      font-size: 1.3rem;
      font-weight: 500;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Evening Flow Section */
    #evening_flow {
      padding: 5rem 2rem;
    }

    #evening_flow h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--accent-lime);
      margin-top: 1rem;
    }

    .flow-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .flow-step {
      padding: 2rem;
      border: 1px solid var(--gray-medium);
      border-radius: 8px;
      position: relative;
      padding-left: 4rem;
    }

    .flow-step::before {
      content: attr(data-step);
      position: absolute;
      left: 1.5rem;
      top: 1.5rem;
      width: 40px;
      height: 40px;
      background-color: var(--primary-blue);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .flow-step h3 {
      margin-bottom: 0.75rem;
      color: var(--primary-blue);
    }

    /* Contact Section */
    #contact {
      background-color: var(--gray-light);
      padding: 5rem 2rem;
    }

    #contact h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--accent-lime);
      margin-top: 1rem;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 2rem;
    }

    .contact-info {
      padding: 2rem;
    }

    .contact-info p {
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    .contact-info strong {
      color: var(--primary-blue);
      display: block;
      margin-bottom: 0.25rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    form label {
      font-weight: 500;
      color: var(--gray-dark);
      margin-bottom: 0.5rem;
      display: block;
    }

    form input,
    form textarea {
      padding: 0.75rem;
      border: 1px solid var(--gray-medium);
      border-radius: 4px;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      color: var(--gray-dark);
      transition: border-color 0.3s ease;
    }

    form input:focus,
    form textarea:focus {
      outline: none;
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
    }

    form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      background-color: var(--primary-blue);
      color: var(--white);
      padding: 1rem;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
      background-color: #1540b0;
    }

    /* Footer */
    footer {
      background-color: var(--black);
      color: var(--white);
      padding: 3rem 2rem 1rem;
      margin-top: 3rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-column h4 {
      color: var(--accent-lime);
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.75rem;
    }

    .footer-column a {
      color: #cccccc;
      font-size: 0.9rem;
    }

    .footer-column a:hover {
      color: var(--accent-lime);
    }

    .footer-column p {
      font-size: 0.9rem;
      color: #cccccc;
      margin-bottom: 0.75rem;
    }

    .footer-bottom {
      border-top: 1px solid #444;
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.85rem;
      color: #999;
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 1.8rem;
      }

      nav ul {
        gap: 1rem;
      }

      nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
      }

      #concept,
      .contact-wrapper,
      .dining-grid {
        grid-template-columns: 1fr;
      }

      .concept-image,
      .concept-text {
        order: initial !important;
      }

      .hero-content {
        max-width: 100%;
      }

      .flow-steps {
        grid-template-columns: 1fr;
      }

      #hero {
        min-height: 400px;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
