/* Reset & base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Lora', serif;
    background: #faf7f2;
    color: #333;
    line-height: 1.6;
    padding-bottom: 60px;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Header & Nav */
  header {
    background: #eee3d4;
    padding: 1rem;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav h1 {
    font-size: 1.8rem;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #5e4b3c;
    font-weight: bold;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    text-align: center;
  }
  
  .hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  .hero-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(250, 247, 242, 0.8);
    padding: 1rem 2rem;
    border-radius: 8px;
  }
  
  /* Main Content */
  main {
    padding: 2rem;
  }
  
  .about, .contact {
    max-width: 800px;
    margin: auto;
    padding: 1rem;
  }
  
  h2, h3 {
    margin-bottom: 1rem;
    color: #5e4b3c;
  }
  
  /* Multi-Column Menu */
  .menu-columns {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .menu-category {
    flex: 1;
    min-width: 200px;
  }
  
  .menu-img {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Footer */
  footer {
    background: #eee3d4;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  