@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Lato:wght@400;700&display=swap");

:root {
      --dusty-rose: #be185d;
      --cream: #fffbeb;
      --dark-brown: #451a03;
      --light-gray: #f5f5f5;
      --text-dark: #2c2c2c;
      --border-light: #e8e8e8;
    }

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

    html, body {
      font-family: 'Lato', sans-serif;
      color: var(--text-dark);
      background-color: #ffffff;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    h1 {
      font-size: 3.5rem;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 0.8rem;
      color: var(--dark-brown);
    }

    h3 {
      font-size: 1.5rem;
      margin-bottom: 0.6rem;
      color: var(--dark-brown);
    }

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

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

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

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

    .logo {
      font-family: 'Nunito', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark-brown);
      text-decoration: none;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 0.95rem;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s ease;
    }

    nav a:hover {
      border-bottom-color: var(--dusty-rose);
    }

    nav a.active {
      border-bottom-color: var(--dusty-rose);
      color: var(--dusty-rose);
    }

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

    section {
      padding: 4rem 0;
    }

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

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

    .hero-background 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.4) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      color: #ffffff;
      padding: 3rem 2rem 2rem 2rem;
      max-width: 600px;
    }

    .hero-content h1 {
      color: #ffffff;
      margin-bottom: 0.5rem;
    }

    .hero-content .subheading {
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 0.5px;
    }

    /* About Concept Section */
    #about_concept {
      background-color: var(--cream);
      padding: 4rem 2rem;
      margin: 0 -2rem;
    }

    .concept-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .concept-text h2 {
      margin-bottom: 1.5rem;
    }

    .concept-text p {
      margin-bottom: 1.2rem;
      font-size: 1.05rem;
    }

    .concept-image {
      width: 100%;
      height: 400px;
      border-radius: 8px;
      overflow: hidden;
    }

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

    /* Garden Dining Section */
    #garden_dining {
      padding: 4rem 0;
    }

    .garden-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .garden-image {
      width: 100%;
      height: 380px;
      border-radius: 8px;
      overflow: hidden;
      order: 2;
    }

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

    .garden-text {
      order: 1;
    }

    .garden-text h2 {
      margin-bottom: 1.5rem;
    }

    .garden-text p {
      margin-bottom: 1.2rem;
      font-size: 1.05rem;
    }

    .menu-highlight {
      background-color: var(--cream);
      padding: 1.5rem;
      border-left: 4px solid var(--dusty-rose);
      margin: 1.5rem 0;
      border-radius: 4px;
    }

    .menu-highlight strong {
      color: var(--dusty-rose);
    }

    /* Guest Flow Section */
    #guest_flow {
      background-color: var(--light-gray);
      padding: 4rem 2rem;
      margin: 0 -2rem;
    }

    .flow-wrapper {
      max-width: 1200px;
      margin: 0 auto;
    }

    .flow-wrapper h2 {
      text-align: center;
      margin-bottom: 0.8rem;
    }

    .flow-wrapper .subheading {
      text-align: center;
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 2rem;
    }

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

    .flow-step {
      background-color: #ffffff;
      padding: 2rem;
      border-radius: 8px;
      text-align: center;
      border-top: 3px solid var(--dusty-rose);
    }

    .flow-step h3 {
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }

    .flow-step p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Highlights Section */
    #highlights {
      padding: 4rem 0;
    }

    .highlights-wrapper h2 {
      text-align: center;
      margin-bottom: 0.8rem;
    }

    .highlights-wrapper .subheading {
      text-align: center;
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 2.5rem;
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .highlight-card {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .highlight-icon {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      background-color: var(--dusty-rose);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.8rem;
      font-weight: bold;
    }

    .highlight-text h3 {
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }

    .highlight-text p {
      font-size: 0.95rem;
      color: #555;
      margin: 0;
    }

    .highlights-cta {
      text-align: center;
      margin-top: 2rem;
    }

    .btn {
      display: inline-block;
      padding: 0.9rem 2rem;
      background-color: var(--dusty-rose);
      color: #ffffff;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .btn:hover {
      background-color: #a01452;
    }

    /* Contact Section */
    #contact {
      background-color: var(--cream);
      padding: 4rem 2rem;
      margin: 0 -2rem;
    }

    .contact-wrapper {
      max-width: 700px;
      margin: 0 auto;
    }

    .contact-wrapper h2 {
      text-align: center;
      margin-bottom: 0.8rem;
    }

    .contact-wrapper .subheading {
      text-align: center;
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 2rem;
    }

    .contact-form {
      background-color: #ffffff;
      padding: 2rem;
      border-radius: 8px;
      border: 1px solid var(--border-light);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--dark-brown);
      font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid var(--border-light);
      border-radius: 4px;
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--dusty-rose);
      box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.1);
    }

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

    .form-submit {
      width: 100%;
      padding: 1rem;
      background-color: var(--dusty-rose);
      color: #ffffff;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .form-submit:hover {
      background-color: #a01452;
    }

    /* Footer */
    footer {
      background-color: var(--dark-brown);
      color: #ffffff;
      padding: 3rem 2rem 1rem;
      margin-top: 4rem;
    }

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

    .footer-section h3 {
      color: #ffffff;
      margin-bottom: 1rem;
      font-size: 1.1rem;
    }

    .footer-section p {
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 0.8rem;
    }

    .footer-section a {
      color: #ffffff;
      text-decoration: none;
      font-size: 0.9rem;
      display: block;
      margin-bottom: 0.5rem;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: var(--dusty-rose);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
    }

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

      h2 {
        font-size: 1.8rem;
      }

      nav {
        gap: 1rem;
      }

      nav a {
        font-size: 0.85rem;
      }

      #hero {
        height: 400px;
      }

      .concept-wrapper,
      .garden-content {
        grid-template-columns: 1fr;
      }

      .garden-image {
        order: 1;
      }

      .garden-text {
        order: 2;
      }

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

      .highlights-grid {
        grid-template-columns: 1fr;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      main {
        padding: 0 1rem;
      }

      header {
        padding: 1rem;
      }

      .header-container {
        flex-direction: column;
        gap: 1rem;
      }

      .hero-content {
        padding: 2rem 1rem 1rem;
      }

      #about_concept,
      #guest_flow,
      #contact {
        padding: 3rem 1rem;
        margin: 0 -1rem;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
