@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #FFF9F3;
  color: #3D3B3C;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: #5E4B56;
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: #FF85A2;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: rgb(255, 82, 123.1229508197);
}

.accent-text {
  font-family: "Pacifico", cursive;
  color: #FF85A2;
}

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

.section {
  padding: 60px 0;
}

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo img {
  height: 50px;
  margin-right: 10px;
}
header .logo h1 {
  font-family: "Pacifico", cursive;
  font-size: 1.8rem;
  margin: 0;
  color: #FF85A2;
}
header nav ul {
  display: flex;
  list-style: none;
}
header nav ul li {
  margin-left: 30px;
}
header nav ul li a {
  color: #5E4B56;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
header nav ul li a:hover {
  color: #FF85A2;
}
header nav ul li a.active {
  color: #FF85A2;
  font-weight: 600;
}

.hero {
  background-color: #8CD7C8;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/pattern.svg");
  opacity: 0.1;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.hero h1 span {
  font-family: "Pacifico", cursive;
  color: #FFD166;
  display: block;
}
.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.hero .btn {
  margin-top: 1rem;
}

.card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.card .card-img {
  height: 200px;
  overflow: hidden;
}
.card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.card .card-body {
  padding: 25px;
}
.card .card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.card .card-body .price {
  color: #FF85A2;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  display: block;
}
.card:hover img {
  transform: scale(1.05);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.featured {
  background-color: rgba(255, 209, 102, 0.1);
  position: relative;
}
.featured::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url("/images/wave.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.featured .tag {
  background-color: #FF85A2;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background-color: #FF85A2;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}
.btn:hover {
  background-color: rgb(255, 92.2, 130.8983606557);
  transform: translateY(-2px);
}
.btn.btn-secondary {
  background-color: #8CD7C8;
}
.btn.btn-secondary:hover {
  background-color: rgb(109.7290322581, 204.4709677419, 185.5225806452);
}
.btn.btn-outline {
  background-color: transparent;
  border: 2px solid #FF85A2;
  color: #FF85A2;
}
.btn.btn-outline:hover {
  background-color: #FF85A2;
  color: #FFFFFF;
}

footer {
  background-color: #F7E1D7;
  color: #3D3B3C;
  padding: 60px 0 20px;
}
footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 12px;
}
footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #FF85A2;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 0.8rem;
}
footer ul li a {
  color: #3D3B3C;
}
footer ul li a:hover {
  color: #FF85A2;
}
footer .social {
  display: flex;
  gap: 15px;
}
footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 133, 162, 0.1);
  color: #FF85A2;
  transition: all 0.3s ease;
}
footer .social a:hover {
  background-color: #FF85A2;
  color: white;
  transform: translateY(-3px);
}
footer .copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(61, 59, 60, 0.1);
  font-size: 0.9rem;
}

.menu-section {
  margin-bottom: 50px;
}
.menu-section h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.menu-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFD166;
}
.menu-section .menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.menu-section .menu-item {
  border-bottom: 1px dashed rgba(61, 59, 60, 0.15);
  padding-bottom: 15px;
}
.menu-section .menu-item h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}
.menu-section .menu-item .description {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgb(99.8875, 96.6125, 98.25);
}
.menu-section .menu-item .price {
  font-weight: 600;
  color: #FF85A2;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-section .contact-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.contact-section .contact-info .info-item .icon {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 133, 162, 0.1);
  color: #FF85A2;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-section form .form-group {
  margin-bottom: 20px;
}
.contact-section form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-section form .form-group input, .contact-section form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(61, 59, 60, 0.1);
  border-radius: 8px;
  background-color: white;
  transition: all 0.3s ease;
}
.contact-section form .form-group input:focus, .contact-section form .form-group textarea:focus {
  outline: none;
  border-color: #FF85A2;
}
.contact-section form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.about-section .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-section .about-content img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-section .values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.about-section .values .value-item {
  text-align: center;
  padding: 30px 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.about-section .values .value-item .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(140, 215, 200, 0.1);
  color: #8CD7C8;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.decoration {
  position: absolute;
  z-index: -1;
}
.decoration.ice-cream {
  width: 60px;
  height: 60px;
  background-image: url("/images/ice-cream-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.decoration.sprinkle {
  width: 20px;
  height: 20px;
  background-color: #FFD166;
  border-radius: 50%;
  opacity: 0.2;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.float {
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  header .container .logo {
    margin-bottom: 20px;
  }
  .hero {
    padding: 70px 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .contact-section,
  .about-section .about-content {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 40px 0;
  }
}
@media (max-width: 576px) {
  header nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  header nav ul li {
    margin: 5px 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
