@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #c52d2d;
  --secondary-color: #d4af37;
  --accent-color: #2d5a27;
  --dark-color: #2c2c2c;
  --light-color: #f8f5f0;
  --text-dark: #333333;
  --text-light: #777777;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}




.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  border: 1px solid #fff;
  background: transparent;
}

.btn-secondary,
.btn-third:hover {
  background: var(--dark-color);
  color: white;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-third {
  background: var(--secondary-color);
  color: var(--dark-color);
}

.primary-text {
  color: var(--secondary-color);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.section-title p {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}



header {
  height: 100vh;
  background: url("./img/menu.png") center center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 100;
}

#navbar img {
  width: 80px;
  margin-left: 20px;
}

nav ul {
  display: flex;
  margin-right: 20px;
}

nav ul li a {
  padding: 10px 15px;
  font-weight: 600;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 70%;
}

header .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

header::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

header .content h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header .content p {
  color: #fff;
  margin: 20px 0 40px;
  font-size: 18px;
  max-width: 600px;
}

header * {
  z-index: 10;
}





#about {
  padding: 100px 0;
  background: var(--light-color);
}

#about .about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

#about .about-text {
  flex: 1;
}

#about .about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 500;
}

#about .about-image {
  flex: 1;
  text-align: center;
}

#about img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

#about .about-content a {
  margin-top: 2rem;
}





#menu {
  background: var(--light-color);
  padding: 100px 0;
}

#menu .section-title h2 {
  color: var(--dark-color);
}

#menu .section-title p {
  color: var(--text-light);
}

#menu .menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

#menu .menu-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  text-align: center;
  padding: 25px 15px;
}

#menu .menu-item:hover {
  transform: translateY(-5px);
}

#menu .menu-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 3px solid var(--secondary-color);
}

#menu .menu-item h3 {
  font-size: 18px;
  color: var(--dark-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e0e0e0;
}

#menu .menu-item .description {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.5;
}

#menu .menu-item .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

#menu .btn {
  display: block;
  margin: 50px auto 0;
  border: none;
}

#menu hr {
  border-radius: 40%;
  background-color: #5a280b;
  margin-top: 10px;
  height: 3px;
}

#menu .menu-item .ark {
  font-size: 16px;
  font-weight: 400;
}

#menu .menu-item .akk {
  border: none;
}







#daytime {
  background: url("./img/daytime_bg.jpeg") center center/cover fixed no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}

#daytime::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.322);
}

#daytime .container {
  position: relative;
  z-index: 1;
}

#daytime .daytime-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  align-items: center;
  padding: 80px 0;
}

#daytime .daytime-item {
  padding: 20px;
}

#daytime .daytime-item i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

#daytime .daytime-item h3 {
  font-size: 28px;
  margin: 15px 0 10px;
}

#daytime .daytime-item p {
  font-weight: 500;
}





#contact {
  background: var(--light-color);
  padding: 100px 0;
}

#contact .container {
  max-width: 900px;
}

#contact .contact-content {
  display: flex;
  gap: 50px;
}

#contact .contact-info {
  flex: 1;
}

#contact .contact-info div {
  margin: 30px 0;
  line-height: 1.7;
}

#contact .contact-info h3 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

#contact .contact-info p {
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

#contact .contact-info p i {
  color: var(--secondary-color);
  margin-right: 10px;
  margin-top: 5px;
}

#contact .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

#contact .social-links a i {
  color: #fff;
  background: var(--dark-color);
  padding: 12px;
  font-size: 16px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#contact .social-links a i:hover {
  background-color: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}


form {
  flex: 1;
}

form input,
textarea {
  display: block;
  width: 100%;
  padding: 15px;
  margin: 15px 0;
  border: none;
  background-color: white;
  border-radius: 8px;
  font-family: "Quicksand", sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

form input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form button {
  color: #fff;
  width: 100%;
}




#footer {
  background-color: var(--dark-color);
  text-align: center;
  color: #fff;
  padding: 25px 0;
  font-size: 14px;
}

#footer p {
  margin: 5px 0;
}

#footer .heart {
  color: var(--primary-color);
}






@media (max-width: 1000px) {
  .container {
    padding: 0 20px;
  }
  
  #navbar {
    padding: 0 10px;
  }

  #navbar img {
    margin-left: 0;
  }

  nav ul {
    margin-right: 0;
  }

  nav ul li a {
    padding: 10px;
    font-size: 14px;
  }

  header .content h1 {
    font-size: 36px;
  }

  #about {
    padding: 80px 0;
  }

  #about .about-content {
    flex-direction: column;
    text-align: center;
  }

  #about .about-text {
    margin-bottom: 30px;
  }

  #offers .offers-items {
    grid-template-columns: repeat(2, 1fr);
  }

  #contact .contact-content {
    flex-direction: column;
  }

  #contact .contact-info,
  form {
    width: 100%;
  }
}




@media (max-width: 768px) {
  header .content h1 {
    font-size: 28px;
  }

  header .content p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  #navbar {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }

  #navbar img {
    margin-bottom: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  #about .about-content {
    flex-direction: column;
  }

  #about .about-content a {
    margin: 2rem 0;
  }

  #offers {
    padding: 60px 0;
  }

  #offers .offers-items {
    grid-template-columns: 1fr;
  }

  #menu .menu-items {
    grid-template-columns: 1fr;
  }

  #daytime .daytime-items {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }

  #daytime .daytime-item {
    margin-top: 20px;
  }

  #gallery .img-gallery {
    grid-template-columns: 1fr;
  }

  #contact .contact-info,
  form {
    width: 100%;
  }
}

@media (max-width: 480px) {
  header .content h1 {
    font-size: 24px;
  }

  header .content p {
    font-size: 14px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 28px;
  }
}