body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 0.5em;
}

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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 1.8em;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition-property: background-color transform box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  border: none;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background-color: #e91e63;
  color: #fff;
}
.btn--primary:hover {
  background-color: rgb(237.5425101215, 76.4574898785, 131.2105263158);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn--outline {
  background-color: transparent;
  color: #e91e63;
  border: 2px solid #e91e63;
}
.btn--outline:hover {
  background-color: rgba(233, 30, 99, 0.1);
}
.btn--large {
  padding: 1em 2.2em;
  font-size: 1.1rem;
}
.btn__icon {
  margin-right: 0.5em;
  font-size: 1.2em;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}
.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}
.feature {
  padding: 1rem;
  background: rgb(71.4, 71.4, 71.4);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.feature-card {
  text-align: center;
}
.feature-card i {
  color: #ecc235;
}
.feature-card h3 {
  color: #e7bab1;
}
.feature-card p {
  color: #fff;
  text-align: justify;
}
.feature-images {
  border-radius: 8px;
  background: #e7bab1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .feature-images video {
    width: 90%;
    height: 300px;
  }
}
@media (max-width: 575.98px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.products-header {
  text-align: center;
  color: #333;
}
@media (max-width: 575.98px) {
  .products-header h2 {
    margin-bottom: 0;
  }
}
.products .category-tabs {
  display: flex;
  width: 60;
  justify-content: space-around;
  padding-bottom: 10px;
}
.products .category-tabs button {
  padding: 5px;
  border-color: #ecc235;
  border-radius: 10px;
  background: #e7bab1;
}

.grid-carousel-container {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  background: #f5f5f5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    margin: 0 -0.5rem;
  }
  .product-grid::-webkit-scrollbar {
    display: none;
  }
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  margin-bottom: 1rem;
  position: relative;
  flex: 0 0 300px;
  scroll-snap-align: start;
  margin: 0 0rem;
}
@media (max-width: 575.98px) {
  .product-card {
    flex: 0 0 280px;
  }
}
@media (max-width: -0.02px) {
  .product-card {
    flex: 0 0 250px;
  }
}
.product-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e91e63;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.product-card-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-card-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.product-card:hover .product-card-img::after {
  opacity: 1;
}
.product-card-info {
  padding: 1.5rem;
  text-align: center;
}
.product-card-info h3 {
  color: #e91e63;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.product-card-info .product-description {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 60px;
}
.product-card-info .price {
  font-weight: bold;
  color: #333;
  font-size: 1.3rem;
  margin: 1rem 0;
  display: block;
}
.product-card-info .price-old {
  text-decoration: line-through;
  color: #777777;
  font-size: 1rem;
  margin-right: 0.5rem;
}
.product-card-info .btn {
  width: 100%;
}
.product-card-featured {
  border: 2px solid #e91e63;
}
.product-card-featured .product-card-badge {
  background: #ff9800;
}

.carousel-controls {
  display: none;
}
@media (max-width: 991.98px) {
  .carousel-controls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }
}
.carousel-controls .carousel-btn {
  background: #e91e63;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.carousel-controls .carousel-btn:hover {
  background: rgb(193.1174089069, 18.8825910931, 78.1052631579);
  transform: scale(1.1);
}
.carousel-controls .carousel-btn:disabled {
  background: rgb(179, 179, 179);
  cursor: not-allowed;
  transform: none;
  opacity: 0.5;
}

.events {
  text-align: center;
  padding: 2em;
}

.event-card {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  padding: 1em;
}
.event-card img {
  width: 80%;
  height: 300px;
  object-fit: cover;
}
.event-card-content {
  padding: 1.5rem;
  background: #fff;
}
.event-card-content h3 {
  color: #e91e63;
  margin-bottom: 0.5rem;
}
.event-card-content p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.event-card-content .event-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.event-card-content .event-details .price {
  font-weight: bold;
  font-size: 1.2rem;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials {
  text-align: center;
  padding: 2rem;
}
.testimonials .testimonial-slider {
  padding: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonials .testimonial-slider p {
  margin-bottom: 1em;
  text-align: justify;
}
.testimonials .testimonial-slider .client {
  display: block;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.testimonials .testimonial-slider .client img {
  margin-top: 0;
  box-shadow: 0 4px 8px 0 rgba(247, 3, 3, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 90%;
}

input {
  height: 2rem;
  width: 15rem;
  border-radius: 5px;
  margin: 2.5px;
}

.contact {
  padding: 1rem;
  text-align: center;
}
.contact-container {
  height: 30rem;
  background-image: url("../img/flour.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 1rem;
}
.contact-container form {
  display: block;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.589);
  backdrop-filter: blur(2px);
}
.contact-container form textarea {
  width: 85%;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-info {
  background-color: rgba(245, 245, 220, 0.822);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.newsletter {
  margin-bottom: 4rem;
  text-align: center;
  align-content: center;
}
.newsletter form {
  padding: 5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
}
.newsletter form button {
  position: absolute;
  margin-top: 2.5rem;
  background-color: rgb(201, 201, 201);
}

.cart-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  display: flex;
  flex-direction: column;
}
.cart-modal.show {
  right: 0;
}
.cart-modal .cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgb(148, 148, 148);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-modal .cart-header h3 {
  margin: 0;
  color: #e91e63;
}
.cart-modal .cart-header .close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #555;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.cart-modal .cart-header .close-cart:hover {
  color: #e91e63;
}
.cart-modal .cart-items {
  margin-top: 1.5rem;
}
.cart-modal .cart-items .cart-item h4 {
  margin-bottom: 0;
}
.cart-modal .cart-items .item-quantity {
  padding: 0;
  margin: 0;
}
.cart-modal .cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.cart-modal .btn {
  width: 100%;
}

.cart-total {
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.cart-total span {
  color: #e91e63;
  font-size: 1.4rem;
}

.cart-item {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(179, 179, 179);
}
.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}
.cart-item-info {
  flex: 1;
  padding: 0 1rem;
}
.cart-item-info h4 {
  color: #e91e63;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.cart-item-info .item-price {
  font-weight: bold;
}
.cart-item-info .item-quantity {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.cart-item-info .item-quantity button {
  background: rgb(179, 179, 179);
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.cart-item-info .item-quantity button:hover {
  background: rgb(148, 148, 148);
}
.cart-item-info .item-quantity span {
  margin: 0 0.5rem;
  min-width: 20px;
  text-align: center;
}
.cart-item .remove-item {
  background: none;
  border: none;
  color: #555;
  font-size: 1.2rem;
  cursor: pointer;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.cart-item .remove-item:hover {
  color: #e91e63;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.product-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px 8px 0 0;
}
.product-card-info {
  padding: 1.5rem;
}
.product-card-info h3 {
  color: #333;
  margin-bottom: 0.5rem;
}
.product-card-info .product-description {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.product-card-info .price {
  color: #e91e63;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cart-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.cart-popup.show {
  display: flex;
}
.cart-popup .popup-content {
  background: white;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease;
}
.cart-popup .popup-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  position: relative;
}
.cart-popup .popup-header i {
  color: #4CAF50;
  font-size: 1.5rem;
  margin-right: 0.8rem;
}
.cart-popup .popup-header h3 {
  margin: 0;
  color: #333;
  flex: 1;
}
.cart-popup .popup-header .close-popup {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
}
.cart-popup .popup-header .close-popup:hover {
  color: #333;
}
.cart-popup .popup-body {
  padding: 1.5rem;
}
.cart-popup .popup-product-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}
.cart-popup .popup-product-info .popup-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-popup .popup-product-info .popup-details {
  flex: 1;
}
.cart-popup .popup-product-info .popup-details h4 {
  margin: 0 0 0.5rem 0;
  color: #333;
}
.cart-popup .popup-product-info .popup-details .popup-price {
  margin: 0;
  color: #e91e63;
  font-weight: 600;
  font-size: 1.1rem;
}
.cart-popup .cart-summary h4 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.1rem;
}
.cart-popup .popup-cart-items {
  margin-bottom: 1rem;
}
.cart-popup .popup-cart-items .popup-cart-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f5f5f5;
}
.cart-popup .popup-cart-items .popup-cart-item .popup-item-name {
  color: #666;
}
.cart-popup .popup-cart-items .popup-cart-item .popup-item-price {
  color: #333;
  font-weight: 500;
}
.cart-popup .popup-cart-items .popup-more-items {
  text-align: center;
  color: #999;
  font-style: italic;
  padding: 0.5rem 0;
}
.cart-popup .popup-total {
  text-align: right;
  padding-top: 1rem;
  border-top: 2px solid #eee;
  color: #333;
  font-size: 1.1rem;
}
.cart-popup .popup-footer {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
}
.cart-popup .popup-footer .btn {
  flex: 1;
  text-align: center;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .cart-popup .popup-content {
    width: 95%;
    margin: 1rem;
  }
  .cart-popup .popup-footer {
    flex-direction: column;
  }
}
.header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0 auto;
  padding: 0 2rem;
  height: 80px;
}
.header .logo img {
  display: flex;
  width: 75px;
  transition-property: filter;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.header .logo img:hover {
  filter: drop-shadow(0 2px 5px rgba(233, 30, 99, 0.3));
}
.header .nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 2.5rem;
}
.header .nav ul li {
  margin-left: 1.5rem;
  position: relative;
}
.header .nav ul li a {
  font-weight: 600;
  color: #333;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  display: flex;
  align-items: center;
}
.header .nav ul li a:hover {
  color: #e91e63;
}
.header .nav ul li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e91e63;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.header .nav ul li:hover::after {
  width: 100%;
}
.header .nav .header-cart {
  position: absolute;
  top: 30px;
  right: 0;
  margin-right: 1rem;
}
.header .nav .header-cart::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e91e63;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.header .nav .header-cart:hover::after {
  width: 100%;
}
.header .nav .header-cart .cart-btn {
  display: flex;
  font-weight: 600;
  color: #333;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  display: flex;
  align-items: center;
}
.header .nav .header-cart .cart-btn .cart-count {
  background: #e91e63;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  margin-left: 0.3rem;
}
.header .nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
.header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.header.scrolled .header-container {
  height: 70px;
}
.header.scrolled .logo img {
  height: 45px;
}
@media (max-width: 991.98px) {
  .header .nav ul {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    opacity: 0;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease;
  }
  .header .nav ul.show {
    display: hidden;
    transform: translateY(0);
    opacity: 1;
    width: 100%;
  }
  .header .nav ul-i {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
  }
  .header .nav ul-i::after {
    bottom: 0;
  }
  .header .nav .menu-toggle {
    display: block;
  }
  .header.scrolled .nav-list {
    top: 70px;
  }
  .header .header-cart .cart-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 255px;
    font-size: 25px;
  }
}

footer {
  background: #333;
  color: #fff;
  padding: 1rem;
}
footer .logo img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 15rem;
}
footer .logo p {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}
footer .col,
footer .info {
  margin-bottom: 1rem;
  justify-content: center;
}
footer .col h4,
footer .info h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}
footer .col h4::after,
footer .info h4::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 45%;
  width: 50px;
  height: 2px;
  background: #e91e63;
  margin-left: -5px;
}
footer .col ul,
footer .info ul {
  list-style: none;
  text-align: center;
}
footer .col ul li,
footer .info ul li {
  margin-bottom: 0.8rem;
}
footer .col ul li a,
footer .info ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  display: inline-block;
}
footer .col ul li a:hover,
footer .info ul li a:hover {
  color: #e91e63;
  transform: translateX(5px);
}
footer .info {
  justify-content: center;
  align-items: center;
}
footer .info p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
footer .info p i {
  margin-right: 0.8rem;
  color: #e91e63;
  width: 20px;
  text-align: center;
}
footer .info .social-media {
  text-align: center;
}
footer .info .social-media i {
  font-size: 2rem;
  color: #e91e63;
  padding: 5px;
}
footer .info .social-links {
  display: flex;
  margin-top: 1.5rem;
}
footer .info .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.8rem;
  color: #fff;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
footer .info .social-links a:hover {
  background: #e91e63;
  transform: translateY(-3px);
}
footer .info .payment-methods {
  margin-top: 1.5rem;
  text-align: center;
}
footer .info .payment-methods i {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}
footer .bottom {
  background: rgb(63.75, 63.75, 63.75);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}
footer .bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0;
}
footer .bottom p i {
  color: #e91e63;
  margin: 0 0.3rem;
}
footer .bottom p a {
  color: #e91e63;
  font-weight: 600;
}
@media (min-width: 768px) {
  footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/wedding-cake-gb51658055_1280.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}
.hero .content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.hero .content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero .content h1 {
    font-size: 4.5rem;
  }
}
.hero .content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .hero .content p {
    font-size: 1.4rem;
  }
}
.hero .btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.hero .btns a {
  text-decoration: none;
  background: pink;
  color: purple;
}
@media (min-width: 576px) {
  .hero .btns {
    flex-direction: row;
  }
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.about {
  margin-bottom: 1.5em;
  padding: 1em;
}
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  text-align: justify;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  place-items: center;
}
.about-content .about-text {
  background: url("../img/cake-g408b51835_1280.png");
  background-size: 35%;
  background-position: right bottom;
  background-repeat: no-repeat;
  height: 80%;
}
.about-content ul {
  list-style-type: none;
}
.about-content .about-image {
  box-shadow: 0 0 70px 5px rgba(226, 6, 6, 0.397), 0 0 8px 5px rgba(252, 237, 31, 0.308);
  display: grid;
  grid-template-columns: auto auto auto;
  height: 500px;
  width: 80%;
}
.about-content .about-image .item4 {
  grid-area: 1/2/3/2;
  object-fit: cover;
}
.about-content .about-image img {
  object-fit: fill;
  width: 100%;
  height: 100%;
}

.hero-title {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

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