/* global React, Section, HandNote, Laurel */

function About() {
  return (
    <Section
      id="about"
      eyebrow="Our story"
      title={<>From Corfu<br/>to the Florida Coast.</>}
    >
      <div style={{ maxWidth: 820 }}>
        <p className="dh-lead" style={{ marginBottom: 28 }}>
          Every great meal begins with a story, and ours starts on a small Greek island in the heart of the Ionian Sea.
        </p>
        <p>
          Brothers <strong>Chef Ilias</strong> and <strong>Dimitris Korakianitis</strong> were raised with the traditions of Corfu, Greece, where gathering around the table isn't just a meal — it's a way of life. Family recipes, fresh ingredients, generous hospitality, and long afternoons shared with loved ones shaped the way they believe food should be enjoyed.
        </p>
        <p>
          Their restaurant journey began with a small sandwich shop in Ontario, Canada. Driven by a passion for sharing the flavors of Greece, they opened the first <strong>Dimi's Greek House</strong> in their hometown in 2015. What started as a neighborhood restaurant quickly became something much bigger — a place where guests felt like family and every meal was served with genuine Greek hospitality.
        </p>
        <p>
          From the beginning, the brothers dreamed of bringing Dimi's to the United States. For years, Florida was their favorite place to escape the Canadian winters. They fell in love with Jupiter's sunshine, coastal lifestyle, and welcoming community, and knew it was the perfect place to open their first American location.
        </p>
        <p>
          Today, Dimi's Greek House brings together generations of family tradition with refined culinary technique. Chef Ilias trained at <strong>Le Cordon Bleu</strong> in Paris and continued his culinary education in Naples, Italy, blending classical European training with the authentic flavors of his Greek heritage. While Ilias leads the kitchen, Dimitris ensures every guest who walks through the door feels welcomed like they're visiting family.
        </p>
        <p>
          When they're not at the restaurant, you'll usually find the brothers on a golf course, traveling, or back home in Corfu, reconnecting with the island that continues to inspire everything they create.
        </p>
        <p>
          At Dimi's Greek House, our goal is simple: serve honest Greek food, welcome every guest like family, and create the kind of place you'll want to return to again and again.
        </p>
        <p style={{ fontStyle: "italic", marginTop: 8 }}>Welcome to our table.</p>
        <div className="dh-about-sig" style={{ marginTop: 28 }}>
          <HandNote rotate={-4} color="var(--olive-900)">— Ilias &amp; Dimitris</HandNote>
        </div>
        <div style={{ display: "flex", alignItems: "center", gap: 12, marginTop: 32, borderTop: "1px solid var(--border)", paddingTop: 24 }}>
          <Laurel size={44} />
          <div>
            <small style={{ display: "block", fontFamily: "var(--font-display)", fontSize: 10, letterSpacing: "0.18em", textTransform: "uppercase", color: "var(--ink-500)" }}>Family home</small>
            <strong style={{ fontFamily: "var(--font-display)", fontSize: 15, color: "var(--olive-900)" }}>Corfu &middot; Kerkyra (Κέρκυρα)</strong>
          </div>
        </div>
      </div>
    </Section>
  );
}

window.About = About;
