/* Extracted from index.html inline styles */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  background: #fff9f5;
  color: #2d2d2d;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: #4a3b5b;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8e4e9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  transition: opacity 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader img {
  width: 100px;
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Promotional Banner */
.promo-banner {
  background: linear-gradient(90deg, #f8e4e9, #f9e9ec);
  color: #2d2d2d;
  text-align: center;
  padding: 14px 0;
  position: relative;
  z-index: 1000;
}

.promo-banner p {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.promo-banner a {
  background: #f4d3a0;
  color: #2d2d2d;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.promo-banner a:hover {
  background: #e8c68a;
  transform: scale(1.05);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #fff9f5;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}

.header.scrolled {
  background: #ffffff;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.header__logo img {
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f4d3a0;
  transition: transform 0.3s ease;
}

.header__logo img:hover {
  transform: scale(1.05);
}

.header__nav ul {
  display: flex;
  list-style: none;
  gap: 45px;
}

.header__nav a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.header__nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: #f06292;
  transition: width 0.3s ease;
}

.header__nav a:hover::after,
.header__nav a:focus::after {
  width: 100%;
}

.header__nav a:hover,
.header__nav a:focus {
  color: #f06292;
}

.header__book-btn {
  background: #f06292;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.header__book-btn:hover,
.header__book-btn:focus {
  background: #d94c7f;
  transform: scale(1.05);
}

.header__hamburger {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.header__hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #2d2d2d;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.header__hamburger span:nth-child(1) {
  top: 6px;
}
.header__hamburger span:nth-child(2) {
  top: 13px;
}
.header__hamburger span:nth-child(3) {
  top: 20px;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
  background: #f06292;
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 13px;
  background: #f06292;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff9f5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .header__nav.active {
    display: flex;
  }

  .header__nav ul {
    flex-direction: column;
    gap: 40px;
  }

  .header__nav a {
    font-size: 1.3rem;
    padding: 15px;
  }

  .header__hamburger {
    display: flex;
  }
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  filter: brightness(0.7);
}

.hero__content {
  max-width: 900px;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 4rem;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero__subtitle {
  font-size: 1.4rem;
  color: #2d2d2d;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero.active .hero__title,
.hero.active .hero__subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero__btn {
  background: #f06292;
  color: #fff;
  padding: 16px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero__btn:hover,
.hero__btn:focus {
  background: #d94c7f;
  transform: scale(1.05);
}

.hero__btn.secondary {
  background: #f4d3a0;
  color: #2d2d2d;
  margin-left: 20px;
}

.hero__btn.secondary:hover,
.hero__btn.secondary:focus {
  background: #e8c68a;
  transform: scale(1.05);
}

/* Particle Animation */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Ccircle cx="15" cy="15" r="2.5" fill="%23f4d3a0" opacity="0.3"/%3E%3Ccircle cx="85" cy="25" r="2" fill="%23f06292" opacity="0.3"/%3E%3Ccircle cx="45" cy="75" r="2.5" fill="%23e6d8e8" opacity="0.3"/%3E%3C/svg%3E')
    repeat;
  animation: float 20s linear infinite;
  z-index: 0;
}

@keyframes float {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 150px 150px;
  }
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #25d366;
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn i {
  font-size: 2.2rem;
}

/* Social Media Sidebar */
.social-sidebar {
  position: fixed;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 1000;
}

.social-sidebar a {
  color: #2d2d2d;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-sidebar a:hover,
.social-sidebar a:focus {
  color: #f06292;
  transform: scale(1.2);
}

/* About Section */
.about {
  padding: 100px 24px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about__image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.about__content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.about__content p {
  color: #2d2d2d;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about__content a {
  color: #f06292;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.about__content a:hover,
.about__content a:focus {
  color: #d94c7f;
}

.about__content .btn {
  display: inline-block;
  margin-top: 25px;
  background: #f06292;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about__content .btn:hover,
.about__content .btn:focus {
  background: #d94c7f;
  transform: scale(1.05);
}

/* Gallery Section */
.gallery {
  padding: 100px 24px;
  background: #f8e4e9;
  position: relative;
}

.gallery__title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
}

.gallery__featured {
  margin-bottom: 60px;
}

.gallery__featured-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.gallery__carousel-container,
.gallery__featured-carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.gallery__carousel,
.gallery__featured-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item {
  flex: 0 0 33.33%;
  padding: 0 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery__featured .gallery__item {
  flex: 0 0 50%;
}

.gallery__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.gallery__item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item-btn {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #f06292;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.gallery__item:hover .gallery__item-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

.gallery__item p {
  text-align: center;
  padding: 25px;
  color: #2d2d2d;
  font-size: 1.1rem;
  font-weight: 400;
}

.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery__filters button {
  background: #fff;
  color: #4a3b5b;
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.1rem;
  font-family: "Cormorant Garamond", serif;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery__filters button:hover,
.gallery__filters button.active,
.gallery__filters button:focus {
  background: #f06292;
  color: #fff;
  transform: scale(1.05);
}

.gallery__nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.gallery__nav-btn {
  background: #f4d3a0;
  color: #2d2d2d;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.gallery__nav-btn:hover,
.gallery__nav-btn:focus {
  background: #f06292;
  color: #fff;
  transform: scale(1.1);
}

.gallery__nav-btn:disabled {
  background: #e0e0e0;
  cursor: not-allowed;
  transform: none;
}

.gallery__lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.gallery__lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.gallery__lightbox.active img {
  transform: scale(1);
}

.gallery__lightbox-caption {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 70px;
  font-family: "Cormorant Garamond", serif;
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.gallery__lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.gallery__lightbox-nav button {
  background: rgba(255, 255, 255, 0.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  font-size: 1.6rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.gallery__lightbox-nav button:hover,
.gallery__lightbox-nav button:focus {
  background: #f06292;
  transform: scale(1.1);
}

.gallery__close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery__close:hover,
.gallery__close:focus {
  transform: scale(1.2);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 24px;
  background: #ffffff;
  position: relative;
}

.testimonials__title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
}

.testimonials__carousel {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial {
  flex: 0 0 100%;
  background: #fff9f5;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial.active {
  opacity: 1;
}

.testimonial p {
  font-style: italic;
  color: #2d2d2d;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.testimonial__author {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #4a3b5b;
}

.testimonials__nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.testimonials__nav-btn {
  background: #f4d3a0;
  color: #2d2d2d;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 1.2rem;
}

.testimonials__nav-btn:hover,
.testimonials__nav-btn:focus {
  background: #f06292;
  color: #fff;
  transform: scale(1.1);
}

.testimonials__nav-btn:disabled {
  background: #e0e0e0;
  cursor: not-allowed;
  transform: none;
}

/* How to Order Section */
.order {
  padding: 100px 24px;
  background: #f8e4e9;
  position: relative;
}

.order__title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
}

.order__steps {
  max-width: 800px;
  margin: 0 auto;
}

.order__step {
  margin-bottom: 25px;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.order__step:hover {
  transform: translateY(-8px);
}

.order__step h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.order__step p {
  color: #2d2d2d;
  font-size: 1.1rem;
}

.order__btn {
  display: block;
  text-align: center;
  background: #f06292;
  color: #fff;
  padding: 16px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
}

.order__btn:hover,
.order__btn:focus {
  background: #d94c7f;
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  padding: 100px 24px;
  background: #ffffff;
  position: relative;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__info h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.contact__info p {
  color: #2d2d2d;
  font-size: 1.2rem;
  line-height: 1.8;
}

.contact__info a {
  color: #f06292;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact__info a:hover,
.contact__info a:focus {
  color: #d94c7f;
  text-decoration: underline;
}

.contact__info .contact__social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.contact__info .contact__social-links a {
  font-size: 2rem;
  color: #2d2d2d;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact__info .contact__social-links a:hover,
.contact__info .contact__social-links a:focus {
  color: #f06292;
  transform: scale(1.2);
}

.contact__form-container {
  background: linear-gradient(135deg, #fff9f5, #f8e4e9);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  border: 1px solid #f4d3a0;
}

.contact__form {
  display: grid;
  gap: 25px;
}

.contact__form p {
  font-size: 1.3rem;
  color: #4a3b5b;
  margin-bottom: 25px;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  padding: 16px;
  border: 1px solid #f4d3a0;
  border-radius: 12px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: #f06292;
  box-shadow: 0 0 8px rgba(240, 98, 146, 0.3);
  outline: none;
}

.contact__form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact__form .error {
  color: #d94c7f;
  font-size: 0.9rem;
  display: none;
  margin-top: 8px;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.contact__form input.error,
.contact__form select.error,
.contact__form textarea.error {
  border-color: #d94c7f;
}

.contact__btn {
  background: #f06292;
  color: #fff;
  padding: 16px 35px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  transition: background 0.3s ease, transform 0.3s ease;
  justify-self: center;
}

.contact__btn:hover,
.contact__btn:focus {
  background: #d94c7f;
  transform: scale(1.05);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal__content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  width: 90%;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.modal.active .modal__content {
  transform: scale(1);
}

.modal__content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #2d2d2d;
}

.modal__close {
  background: #f06292;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.modal__close:hover,
.modal__close:focus {
  background: #d94c7f;
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #f8e4e9;
  color: #2d2d2d;
  padding: 80px 24px;
  text-align: center;
  position: relative;
}

.footer__logo img {
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f4d3a0;
  margin-bottom: 25px;
}

.footer__newsletter {
  margin-bottom: 30px;
}

.footer__newsletter h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.footer__newsletter p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.newsletter__form {
  display: flex;
  gap: 15px;
  justify-content: center;
  max-width: 550px;
  margin: 0 auto;
}

.newsletter__form input {
  padding: 14px;
  border: 1px solid #f4d3a0;
  border-radius: 12px;
  font-size: 1rem;
  flex: 1;
}

.newsletter__btn {
  background: #f06292;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter__btn:hover,
.newsletter__btn:focus {
  background: #d94c7f;
  transform: scale(1.05);
}

.footer__nav {
  margin-bottom: 25px;
}

.footer__nav a {
  color: #2d2d2d;
  text-decoration: none;
  margin: 0 25px;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer__nav a:hover,
.footer__nav a:focus {
  color: #f06292;
}

.footer__social {
  margin-bottom: 25px;
}

.footer__social a {
  color: #2d2d2d;
  font-size: 1.5rem;
  margin: 0 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social a:hover,
.footer__social a:focus {
  color: #f06292;
  transform: scale(1.2);
}

.footer__copyright {
  font-size: 0.95rem;
  color: #2d2d2d;
}

/* Parallax Background */
.about::before,
.gallery::before,
.testimonials::before,
.order::before,
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Ccircle cx="10" cy="10" r="1.5" fill="%23f4d3a0" opacity="0.15"/%3E%3Ccircle cx="90" cy="20" r="1" fill="%23f06292" opacity="0.15"/%3E%3C/svg%3E')
    repeat;
  z-index: -1;
  animation: subtleFloat 25s linear infinite;
}

@keyframes subtleFloat {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 120px 120px;
  }
}

/* Accessibility */
.header__nav a:focus,
.hero__btn:focus,
.contact__btn:focus,
.order__btn:focus,
.newsletter__btn:focus,
.gallery__filters button:focus,
.gallery__item-btn:focus,
.gallery__nav-btn:focus,
.modal__close:focus,
.whatsapp-btn:focus,
.social-sidebar a:focus,
.contact__info a:focus {
  outline: 3px solid #f06292;
  outline-offset: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
  .hero__subtitle {
    font-size: 1.3rem;
  }
  .hero__btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
  .about__container,
  .contact__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery__item {
    flex: 0 0 50%;
  }
  .gallery__featured .gallery__item {
    flex: 0 0 100%;
  }
  .gallery__item img {
    height: 300px;
  }
  .gallery__filters button {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .gallery__nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  .gallery__lightbox-caption {
    font-size: 1.1rem;
    margin-top: 60px;
    bottom: 15px;
  }
  .contact__info h2 {
    font-size: 2.8rem;
  }
  .contact__form-container {
    padding: 30px;
  }
  .contact__form p {
    font-size: 1.2rem;
  }
  .contact__form input,
  .contact__form select,
  .contact__form textarea {
    padding: 14px;
    font-size: 0.95rem;
  }
  .contact__btn {
    padding: 14px 30px;
    font-size: 1.1rem;
  }
  .social-sidebar {
    left: 20px;
  }
  .social-sidebar a {
    font-size: 1.4rem;
  }
  .whatsapp-btn {
    width: 55px;
    height: 55px;
  }
  .whatsapp-btn i {
    font-size: 2rem;
  }
  .testimonials__carousel {
    max-width: 100%;
  }
  .footer__nav a {
    margin: 0 20px;
    font-size: 0.95rem;
  }
  .newsletter__form {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
  }
  .hero__btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  .gallery__item {
    flex: 0 0 100%;
  }
  .gallery__item img {
    height: 240px;
  }
  .gallery__lightbox-caption {
    font-size: 1rem;
    margin-top: 50px;
    bottom: 10px;
  }
  .promo-banner p {
    font-size: 0.95rem;
  }
  .testimonials__title,
  .about__content h2,
  .order__title,
  .contact__info h2,
  .gallery__title,
  .gallery__featured-title {
    font-size: 2.5rem;
  }
  .contact__form-container {
    padding: 25px;
  }
  .contact__form p {
    font-size: 1.1rem;
  }
  .contact__form input,
  .contact__form select,
  .contact__form textarea {
    padding: 12px;
    font-size: 0.9rem;
  }
  .contact__btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .footer__logo img {
    height: 90px;
  }
  .footer__nav a {
    display: block;
    margin: 12px 0;
  }
}
