<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>YETCHA Café</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <header>
    <nav class="navbar">
      <h1 class="logo">YETCHA</h1>
      <ul class="nav-links">
        <li><a href="#home">Home</a></li>
        <li><a href="#menu">Menu</a></li>
        <li><a href="#about">About</a></li>
        <li><a href="#contact">Contact</a></li>
      </ul>
    </nav>
  </header>

  <section id="home" class="home">
    <div class="home-content">
      <h2>Welcome to YETCHA Café</h2>
      <p>Where every cup tells a story.</p>
      <a href="#menu" class="btn">See Menu</a>
    </div>
  </section>

  <section id="menu" class="menu">
    <h2>Menu</h2>
    <div class="menu-items">
      <div class="item">
        <h3>Matcha Latte</h3>
        <p>R $7.45 &nbsp;&nbsp; L $8.60</p>
      </div>
      <div class="item">
        <h3>Matcha Kuromitsu Latte</h3>
        <p>R $8.35 &nbsp;&nbsp; L $9.50</p>
      </div>
      <div class="item">
        <h3>Matcha Chocolate Latte</h3>
        <p>R $8.35 &nbsp;&nbsp; L $9.50</p>
      </div>
    </div>
  </section>

  <section id="about" class="about">
    <h2>About</h2>
    <p>
      YETCHA was founded by a small team of coffee enthusiasts with a passion for matcha.
      Our café is dedicated to offering a wide variety of matcha-based drinks in a cozy, welcoming environment.
      From rich lattes to refreshing iced beverages, we strive to provide a unique and satisfying experience
      for all of our customers.
    </p>
  </section>

  <section id="contact" class="contact">
    <h2>Contact</h2>
    <div class="contact-info">
      <div>
        <h3>Visit Us</h3>
        <p>123 Matcha Lane, Green District, Phnom Penh</p>
      </div>
      <div>
        <h3>Call Us</h3>
        <p>+855 12 345 678</p>
      </div>
      <div>
        <h3>Email Us</h3>
        <p>hello@yetcha.com</p>
      </div>
      <div>
        <h3>Opening Hours</h3>
        <p>Mon – Fri: 8:00 AM – 8:00 PM<br>Sat – Sun: 9:00 AM – 10:00 PM</p>
      </div>
    </div>
  </section>

  <footer>
    <p>© 2025 YETCHA Café. All rights reserved.</p>
  </footer>
</body>
</html>
// Add your code here