﻿/* Grundlegende Formatierungen */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  /*background: #f4f4f4;*/
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
header {
  color: #fff;
  padding: 1rem 0;
  height: 200px;
  background: url(persio-restaurant-pizzaria.png) center no-repeat;

}

header h1 {
  margin-bottom: 0.5rem;
}

nav {
  text-align: center;
  display: inline-block;
  padding-bottom: 30px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* Hauptbereich */
main {
  margin: 2rem 0;
}

section {
  margin-bottom: 2rem;
}

h2 {
  color: #444;
  margin-bottom: 0.5rem;
}
.welcome {
    display: inline-block;
  width: 100%;
  border: 1px solid #04A355;
  padding: 0.8rem 1.5rem;
  margin-top: 25px;
  color: #000;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 2x 2px #EE1D23;
}
a.tel-link {
  display: inline-block;
  width: 100%;
  border: 1px solid #EE1D23;
    display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.5rem;
  margin-top: 25px;
  background: white;
  color: #EE1D23;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 2x 2px #04A355;
  transition: ease 1s;
  text-decoration: none;
}
a.tel-link:hover {
  box-shadow: 0 0 10px 1px #04A355;
  transition: ease 1s;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
}

/* Responsive */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  header h1 {
    font-size: 1.5rem;
  }
}
