* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 18px;     
  font-weight: 500;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ded7c8;
  color: #000;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background-color: #b54242;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo img {
  height: 40px;
}

nav a {
  margin: 0 20px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

nav a:hover {
  color: orange;
  transform: scale(1.05);
}

.reservation-btn {
  background-color: rgb(222, 129, 104);
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.reservation-btn:hover {
  background-color: orangered;
  transform: translateY(-3px);
}


.Main {
  display: flex;
  align-items: center;         
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  padding: 120px 60px;
  gap: 60px;
}



.Main-text {
  flex: 1;
}

.Main-text h1 {
  font-size: 4rem;     
  font-weight: 900;    
  margin-bottom: 25px;
  color: #e44922;
}

.Main-text h1 span {
  color: orangered;
}

.secondtext {
  font-size: 1.5rem;   
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}


.buttons {
  margin-top: 30px;
}

.menu,
.reserve-table {
  background-color: rgb(222, 129, 104);
  border: none;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-right: 15px;
}

.menu:hover,
.reserve-table:hover {
  background-color: orangered;
  transform: translateY(-3px);
}


.main-image {
  flex: 1;
  justify-content: flex-end; 
  align-items: center;
}

.main-image img {
  width: 520px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.main-image img:hover {
  transform: scale(1.05);
}


.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px;
  max-width: 1300px;
  margin: auto;
  gap: 80px;
  flex-wrap: wrap;
}

.spagetti-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.spagetti-image img {
  width: 450px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #c1440e;
  margin-bottom: 30px;
}

.about-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}


.full-image {
  width: 100%;
  object-fit: cover;
  display: block;
  margin-top: 100px;
}


footer {
  background-color: #8b0000;
  color: white;
  text-align: center;
  padding: 30px;
  font-weight: 500;
}


@media (max-width: 900px) {

  header {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .Main {
    flex-direction: column;
    text-align: center;
  }

  .main-image {
    justify-content: center;
    margin-top: 40px;
  }

  .Main-text h1 {
    font-size: 2.8rem;
  }
}



