@font-face {
  font-family: Bellina;
  src: url(fonts/Bellina.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Melody;
  src: url(fonts/Melody.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Bricolage;
  src: url(fonts/Bricolage.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Bricolage, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}
h3 {
  font-weight: 400;
}
.section {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.section.section-visible {
  opacity: 1;
  transform: translateY(0);
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.navbar {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-decoration {
  position: absolute;
  height: 30px;
  width: 120px;
  opacity: 0.7;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s ease;
}
.navbar-decoration.left {
  left: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 30" fill="%23ffb7d5"><path d="M0,15 C20,5 40,25 50,15 C60,5 80,25 100,15 L100,16 C80,26 60,6 50,16 C40,26 20,6 0,16 Z" /></svg>');
}
.navbar-decoration.right {
  right: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 30" fill="%23ffb7d5"><path d="M0,15 C20,5 40,25 50,15 C60,5 80,25 100,15 L100,16 C80,26 60,6 50,16 C40,26 20,6 0,16 Z" /></svg>');
  transform: scaleX(-1);
}
.header.scrolled .navbar-decoration {
  opacity: 1;
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}
.logo img {
  height: 60px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}
.header.scrolled .logo img {
  height: 50px;
}
.nav-menu {
  display: flex;
  align-items: center;
}
.nav-menu li {
  margin: 0 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
}
.nav-menu li::after {
  content: "♥";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: rgba(255, 183, 213, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-menu li:last-child::after {
  display: none;
}
.nav-menu:hover li::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}
.nav-link {
  color: #fff;
  font-family: Bellina, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.nav-link:after,
.nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s ease;
  background-image: linear-gradient(
    to right,
    transparent,
    #ffb7d5,
    transparent
  );
}
.nav-link:before {
  left: 50%;
}
.nav-link:after {
  right: 50%;
}
.nav-link.active:after,
.nav-link.active:before,
.nav-link:hover:after,
.nav-link:hover:before {
  width: 50%;
}
.nav-link.active:before,
.nav-link:hover:before {
  width: 100%;
}
.menu-toggle {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #e8a8c2;
  transition: all 0.3s ease-in-out;
}
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.slides {
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease, transform 5s ease;
  transform: scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.1);
}
.slide-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.5s;
}
.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}
.slide-content h1 {
  font-family: Melody, serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.slide-content p {
  font-family: Bellina, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.btn-primary {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.8rem 2rem;
  font-family: Bricolage, sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #fff;
  color: #000;
}
.btn-primary:hover:before {
  left: 100%;
}
.slider-controls {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.next-slide,
.prev-slide {
  background: 0 0;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  margin: 0 1rem;
  transition: all 0.3s ease;
}
.next-slide:hover,
.prev-slide:hover {
  color: rgba(255, 255, 255, 0.7);
}
.slide-dots {
  display: flex;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: #fff;
  transform: scale(1.2);
}
.section {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.section.section-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-title {
  font-family: Bellina, serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: #d35d94;
  padding: 0 30px;
  display: inline-block;
  z-index: 10;
}
.section-title:after,
.section-title:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23d35d94"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.7;
  transform: translateY(-50%);
}
.section-title:before {
  left: 0;
  transform: translateY(-50%) rotate(-15deg);
}
.section-title:after {
  right: 0;
  transform: translateY(-50%) rotate(15deg);
}
.section h2.section-title::after,
.section h2.section-title::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 25px;
  height: 25px;
}
.section .section-title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}
.section .section-title-wrapper::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d35d94, transparent);
  margin: 1rem auto;
}
.services-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fff 0, #fdf7f9 100%);
  position: relative;
  overflow: hidden;
}
.services-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #666;
}
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 4rem;
}
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  width: calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 183, 213, 0.2);
  backdrop-filter: blur(5px);
  background: linear-gradient(
    145deg,
    rgb(255 237 242 / 95%),
    rgb(255 235 242 / 80%)
  );
}
.service-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #d35d94, #ff9ec3);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #ff9ec3, #d35d94);
  transition: all 0.5s ease;
}
.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(211, 93, 148, 0.15);
}
.service-card:hover::after {
  width: 100%;
}
.service-icon {
  font-size: 3rem;
  color: #d35d94;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  background: linear-gradient(45deg, #d35d94, #ff9ec3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  width: 100%;
}
.service-card:hover .service-icon {
  transform: scale(1.1);
}
.service-card h3 {
  font-family: Melody, serif;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: #333;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}
.service-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #d35d94, #ff9ec3);
  transition: width 0.3s ease;
}
.service-card:hover h3::after {
  width: 80px;
}
.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.8rem;
  color: #555;
  transition: all 0.3s ease;
}
.service-features li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: #d35d94;
  font-size: 0.8rem;
  transform: scale(1);
  transition: all 0.3s ease;
}
.service-features li:hover {
  color: #333;
  transform: translateX(3px);
}
.service-features li:hover::before {
  transform: scale(1.2);
}
.services-cta {
  text-align: center;
  margin-top: 2rem;
}
.services-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #555;
}
.services-cta .btn-primary {
  background-color: #d35d94;
  color: #fff;
  border: none;
}
.services-cta .btn-primary:hover {
  background-color: #c04c83;
}
.youtube-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fdf4f7 0, #f8e8ed 100%);
  position: relative;
  overflow: hidden;
}
.youtube-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 183, 213, 0.05) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 158, 195, 0.05) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(211, 93, 148, 0.03) 1px,
      transparent 1px
    );
  background-size: 60px 60px, 100px 100px, 40px 40px;
  animation: floating-hearts-bg 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.youtube-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #666;
  position: relative;
  z-index: 2;
}
.youtube-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.youtube-video-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(211, 93, 148, 0.1);
  padding: 1.5rem;
  width: calc(50% - 30px);
  min-width: 320px;
  max-width: 500px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 183, 213, 0.3);
}
.youtube-video-wrapper::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #d35d94, #ff9ec3);
  opacity: 0.8;
}
.youtube-video-wrapper:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(211, 93, 148, 0.15);
}
.video-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 15px;
  overflow: hidden;
  background: #f8f8f8;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}
.video-title {
  font-family: Melody, serif;
  font-size: 1.3rem;
  color: #333;
  margin-top: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 8px;
}
.video-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #d35d94, #ff9ec3);
}
.video-description {
  color: #666;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.youtube-hearts-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.youtube-heart {
  position: absolute;
  width: 15px;
  height: 15px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff9ec3"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>')
    no-repeat center center;
  opacity: 0;
  animation: float-youtube-heart 12s linear infinite;
}
.youtube-heart.small {
  width: 10px;
  height: 10px;
  animation-duration: 8s;
}
.youtube-heart.large {
  width: 20px;
  height: 20px;
  animation-duration: 15s;
}
@keyframes float-youtube-heart {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0.5) rotate(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(-100%) scale(1.3) rotate(360deg);
  }
}
@media screen and (max-width: 992px) {
  .youtube-video-wrapper {
    width: calc(100% - 20px);
    max-width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .youtube-container {
    gap: 20px;
  }
  .youtube-video-wrapper {
    width: 100%;
    padding: 1rem;
  }
  .video-title {
    font-size: 1.2rem;
  }
  .video-description {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 576px) {
  .youtube-section {
    padding: 3rem 0;
  }
  .youtube-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .video-title {
    font-size: 1.1rem;
  }
}
.team-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}
.team-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #666;
}
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.team-member {
  width: calc(25% - 40px);
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.member-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@supports not (aspect-ratio: 1 / 1) {
  .member-image {
    height: 0;
    padding-bottom: 100%;
  }
  .member-image img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-member:hover .member-image img {
  transform: scale(1.1);
}
.member-info {
  padding: 1.5rem;
  text-align: center;
}
.member-info h3 {
  font-family: Melody, serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.member-role {
  color: #d35d94;
  font-weight: 700;
  margin-bottom: 1rem;
}
.member-bio {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}
.contact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fff8fa 0, #ffe6f0 100%);
  position: relative;
  overflow: hidden;
}
.contact-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #666;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.contact-info {
  flex: 1;
  min-width: 280px;
  padding-right: 2rem;
}
.contact-item {
  display: flex;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #d35d94;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.contact-text h3 {
  font-family: Melody, serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.contact-text p {
  color: #666;
  line-height: 1.6;
}
.social-media-links {
  display: flex;
  margin-top: 2rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #d35d94;
  margin-right: 15px;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.social-link:hover {
  background: #d35d94;
  color: #fff;
  transform: translateY(-5px);
}
.contact-form-container {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 1.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-family: Bricolage, sans-serif;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #d35d94;
  outline: 0;
  box-shadow: 0 0 10px rgba(211, 93, 148, 0.2);
}
.contact-form textarea {
  height: 150px;
  resize: none;
}
.submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #d35d94, #ff9ec3);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: Bricolage, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: linear-gradient(to right, #c04c83, #ff8ab6);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(211, 93, 148, 0.3);
}
.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}
.map-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
}
.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer {
  background: #222;
  color: #fff;
  padding: 4rem 0 1rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.footer-logo {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}
.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}
.footer-logo p {
  color: #bbb;
  font-size: 0.9rem;
}
.footer-links {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}
.footer-links h3 {
  font-family: Melody, serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-links h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #d35d94;
}
.footer-links ul {
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 0.8rem;
}
.footer-links ul li a {
  color: #bbb;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover {
  color: #d35d94;
}
.footer-social {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}
.footer-social h3 {
  font-family: Melody, serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-social h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #d35d94;
}
.footer-social .social-icons {
  display: flex;
  position: static;
  background: 0 0;
  padding: 0;
  opacity: 1;
  transform: none;
}
.footer-social .social-icon {
  background: #333;
  color: #fff;
  margin-right: 15px;
  margin-left: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  text-align: center;
  justify-content: center;
  display: flex;
}
.footer-social .social-icon:hover {
  background: #d35d94;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}
.footer-bottom p {
  margin-bottom: 0.5rem;
}
.footer-bottom .fa-heart {
  color: #d35d94;
}
.submit-btn:disabled:hover {
  background: #ccc;
  transform: none;
}
.security-notice {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}
@media screen and (max-width: 992px) {
  .slide-content h1 {
    font-size: 3rem;
  }
  .works-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 200px;
  }
  .services-container {
    gap: 20px;
  }
  .service-card {
    width: calc(50% - 20px);
  }
  .team-member {
    width: calc(33.33% - 40px);
  }
  .contact-container {
    flex-direction: column;
  }
  .contact-form-container,
  .contact-info {
    width: 100%;
  }
  .contact-info {
    margin-bottom: 3rem;
    padding-right: 0;
  }
  .footer-content {
    justify-content: flex-start;
  }
  .footer-links,
  .footer-logo,
  .footer-social {
    width: 33.33%;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 768px) {
  .navbar-container {
    padding: 1rem;
    width: 100%;
    justify-content: center;
    position: relative;
  }
  .logo {
    position: relative;
    z-index: 999;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }
  .left-menu,
  .right-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgb(0 0 0 / 66%);
    backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex !important;
  }
  #menu-phone {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background: rgb(0 0 0 / 66%);
    backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    z-index: 1000;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.25s;
  }
  #menu-phone.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .team-member {
    width: calc(50% - 40px);
  }
}
@media screen and (min-width: 769px) {
  #menu-phone {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  .slide-content h1 {
    font-size: 2rem;
  }
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  .next-slide,
  .prev-slide {
    font-size: 1.2rem;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .team-member {
    width: 100%;
  }
  .footer-links,
  .footer-logo,
  .footer-social {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .footer-links h3:after,
  .footer-social h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-social .social-icons {
    justify-content: center;
  }
  .map-container {
    height: 300px;
  }
  .contact-description,
  .services-description,
  .team-description,
  .works-description {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
    padding: 0 20px;
  }
  .section-title:after,
  .section-title:before {
    width: 15px;
    height: 15px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px;
  }
  .service-icon {
    font-size: 2rem;
  }
  .service-card {
    width: 98%;
  }
  .contact-text h3,
  .member-info h3,
  .service-card h3 {
    font-size: 1.3rem;
  }
}
.about-section {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, #fff8fa 0, #ffe6f0 100%);
  overflow: hidden;
}
.about-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.05;
  background-image: radial-gradient(
      circle at 25% 25%,
      #ff9ec3 0,
      transparent 50px
    ),
    radial-gradient(circle at 75% 75%, #ff9ec3 0, transparent 50px),
    radial-gradient(circle at 85% 15%, #ff9ec3 0, transparent 30px),
    radial-gradient(circle at 15% 85%, #ff9ec3 0, transparent 30px);
  animation: bg-float 15s infinite alternate ease-in-out;
}
@keyframes bg-float {
  0% {
    background-position: 0 0, 100% 100%, 100% 0, 0 100%;
  }
  100% {
    background-position: 5% 10%, 95% 90%, 90% 10%, 10% 90%;
  }
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}
.photo-stack-container {
  flex: 1;
  min-width: 300px;
  height: 500px;
  position: relative;
  perspective: 1000px;
  margin-bottom: 2rem;
}
.photo-stack {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}
.photo-frame {
  position: absolute;
  width: 80%;
  max-width: 320px;
  height: auto;
  top: 50%;
  left: 50%;
  border: 10px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform-origin: center center;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0) translateZ(0) scale(0.8);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame[data-index="0"] {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-5deg) translateZ(60px) scale(1);
  z-index: 4;
}
.photo-frame[data-index="1"] {
  opacity: 0.9;
  transform: translate(-60%, -55%) rotate(4deg) translateZ(40px) scale(0.95);
  z-index: 3;
}
.photo-frame[data-index="2"] {
  opacity: 0.8;
  transform: translate(-45%, -60%) rotate(-2deg) translateZ(20px) scale(0.9);
  z-index: 2;
}
.photo-frame[data-index="3"] {
  opacity: 0.7;
  transform: translate(-55%, -45%) rotate(7deg) translateZ(0) scale(0.85);
  z-index: 1;
}
.about-content {
  flex: 1;
  min-width: 300px;
  padding: 0 1.5rem;
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 1rem;
}
.about-content .section-title:after {
  margin: 0.5rem 0;
}
.about-tagline {
  font-size: 1.3rem;
  color: #d35d94;
  margin-bottom: 1.5rem;
}
.about-text {
  margin-bottom: 2rem;
}
.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.highlight {
  color: #d35d94;
  font-weight: 700;
}
.about-signature {
  font-family: Bricolage, sans-serif;
  margin-top: 2rem;
}
.signature {
  font-family: Bellina, serif;
  font-size: 1.8rem;
  color: #d35d94;
  margin-top: 0.5rem;
}
.hearts-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.heart {
  position: absolute;
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff9ec3"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>')
    no-repeat center center;
  opacity: 0;
  animation: float-heart 10s linear infinite;
}
@keyframes float-heart {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5) rotate(0);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(-800px) scale(1.2) rotate(360deg);
  }
}
.works-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}
.works-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: #666;
  padding-bottom: 20px;
}
.works-gallery-container {
  position: relative;
  margin-bottom: 3rem;
  overflow: hidden;
  height: 800px;
  min-height: 600px;
  max-height: auto;
  transition: height 0.6s ease-in-out;
  padding: 20px 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
}
@media screen and (max-width: 992px) {
  .works-gallery-container {
    height: 700px;
    max-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .works-gallery-container {
    height: 600px;
    max-height: auto;
    min-height: 500px;
    padding: 15px 0;
  }
}
@media screen and (max-width: 576px) {
  .works-gallery-container {
    height: 400px;
    max-height: auto;
    min-height: 300px;
    padding: 10px 0;
  }
}
.works-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  grid-gap: 15px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
#worksGallery.infinite-scroll {
  animation: galleryInfiniteScroll 60s linear infinite;
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform-origin: center top;
  position: relative;
}
@keyframes galleryInfiniteScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-40%);
  }
}
#worksGallery.infinite-scroll:hover {
  animation-play-state: paused;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0) scale(1);
  z-index: 1;
  opacity: 0;
  transform: translateY(30px) rotateY(-15deg);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item.loaded {
  opacity: 1;
  transform: translateY(0) rotateY(0);
}
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.gallery-item:hover::before {
  opacity: 1;
}
.gallery-item:nth-child(5n + 1) {
  grid-row: span 2;
}
.gallery-item:nth-child(5n + 3) {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.95);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.item-hover,
.item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.gallery-item:hover .item-hover,
.gallery-item:hover .item-overlay {
  opacity: 1;
  transform: scale(1);
}
.item-hover .view-text,
.item-overlay .view-photo-text {
  font-family: Bricolage;
  font-size: 0.8rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding: 9px 15px;
  border: 2px solid #fff;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.item-hover:hover .view-text,
.item-overlay:hover .view-photo-text {
  background: rgba(211, 93, 148, 0.8);
  border-color: #d35d94;
  transform: scale(1.05);
}
.show-more-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
  z-index: 5;
}
.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
    to top,
    rgba(249, 249, 249, 1) 20%,
    rgba(249, 249, 249, 0.8) 50%,
    rgba(249, 249, 249, 0) 100%
  );
  z-index: -1;
}
.show-more-btn {
  background-color: transparent;
  color: #d35d94;
  border: 1px solid #d35d94;
  border-radius: 50px;
  padding: 10px 35px;
  font-family: Bellina, serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(211, 93, 148, 0.2);
  z-index: 10;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-more-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #d35d94, #ff9ec3);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s ease;
  border-radius: 50px;
}
.show-more-btn:hover {
  color: #fff;
  border-color: transparent;
}
.show-more-btn:hover:before {
  transform: scaleX(1);
}
.btn-decoration {
  display: inline-block;
  width: 20px;
  height: 12px;
  opacity: 0.8;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 12" fill="%23d35d94"><path d="M0,6 C4,2 8,10 12,6 C16,2 20,10 24,6" stroke="%23d35d94" stroke-width="1" fill="none"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.btn-decoration.left {
  margin-right: 10px;
}
.btn-decoration.right {
  margin-left: 10px;
  transform: scaleX(-1);
}
.show-more-btn:hover .btn-decoration {
  filter: brightness(5);
}
.works-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4rem;
  padding-top: 30px;
  border-top: 1px solid rgba(211, 93, 148, 0.1);
  position: relative;
  z-index: 5;
  background: rgba(249, 249, 249, 0.95);
}
.category-btn {
  background: 0 0;
  border: 1px solid #d35d94;
  color: #d35d94;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: Bellina, serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.category-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #d35d94, #ff9ec3);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.category-btn.active,
.category-btn:hover {
  color: #fff;
  border-color: transparent;
  background: #d35d94;
}
.category-btn.active:before,
.category-btn:hover:before {
  transform: scaleY(1);
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(211, 93, 148, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(211, 93, 148, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(211, 93, 148, 0);
  }
}
.animate-pulse {
  animation: pulse 0.5s ease-in-out;
}
@media screen and (max-width: 992px) {
  .works-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 200px;
  }
  .works-gallery-container {
    height: 700px;
    max-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .works-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 150px;
    grid-gap: 15px;
  }
  .works-gallery-container {
    height: 600px;
    max-height: auto;
    padding: 15px 0;
  }
  .item-overlay h3 {
    font-size: 1rem;
  }
  .item-overlay p {
    font-size: 0.8rem;
  }
  .works-categories {
    gap: 5px;
    margin-top: 2rem;
    padding-top: 20px;
  }
  .category-btn {
    padding: 6px 15px;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 576px) {
  .works-gallery {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-auto-rows: 120px;
    grid-gap: 10px;
  }
  .works-gallery-container {
    height: 400px;
    min-height: 300px;
    max-height: auto;
    padding: 10px 0;
    margin-bottom: 2rem;
  }
  .gallery-item:nth-child(5n + 1),
  .gallery-item:nth-child(5n + 3) {
    grid-row: span 1;
    grid-column: span 1;
  }
  .works-categories {
    gap: 5px;
    margin-top: 1.5rem;
    padding-top: 15px;
  }
  .category-btn {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  .works-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 10px;
  }
  .show-more-container {
    height: 80px;
    padding-bottom: 15px;
  }
  .gradient-overlay {
    height: 100px;
  }
}
@media screen and (max-width: 576px) and (orientation: portrait) {
  .team-member {
    min-width: 200px;
    margin-bottom: 2rem;
  }
  .member-info {
    padding: 1rem;
  }
}
.photo-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.photo-viewer.active {
  display: flex;
  opacity: 1;
}
.photo-viewer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}
.photo-viewer-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.photo-viewer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}
.photo-viewer-close:hover {
  background: #d35d94;
  border-color: #d35d94;
  transform: scale(1.1);
}
.photo-viewer-next,
.photo-viewer-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}
.photo-viewer-prev {
  left: 20px;
}
.photo-viewer-next {
  right: 20px;
}
.photo-viewer-next:hover,
.photo-viewer-prev:hover {
  background: #d35d94;
  border-color: #d35d94;
  transform: translateY(-50%) scale(1.1);
}
.photo-viewer-content {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: photoZoomIn 0.3s ease-out;
}
@keyframes photoZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.photo-viewer-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.photo-viewer-info {
  text-align: center;
  color: #fff;
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.photo-viewer-title {
  font-family: Melody, serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}
.photo-viewer-category {
  font-size: 1rem;
  color: #d35d94;
  text-transform: capitalize;
  font-weight: 500;
}
.photo-viewer-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .photo-viewer-close {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: 15px;
    right: 15px;
  }
  .photo-viewer-next,
  .photo-viewer-prev {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .photo-viewer-prev {
    left: 15px;
  }
  .photo-viewer-next {
    right: 15px;
  }
  .photo-viewer-image {
    max-height: 70vh;
  }
  .photo-viewer-info {
    margin-top: 15px;
    padding: 15px;
  }
  .photo-viewer-title {
    font-size: 1.2rem;
  }
  .photo-viewer-category {
    font-size: 0.9rem;
  }
  .photo-viewer-counter {
    bottom: 15px;
    font-size: 0.8rem;
    padding: 8px 15px;
  }
}
.gallery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0, #fff 100%);
}
.gallery-description {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 3rem;
  padding: 0 20px;
}
.gallery-categories .category-btn {
  background: linear-gradient(135deg, #d4a574 0, #c9965e 100%);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}
.gallery-categories .category-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}
.gallery-categories .category-btn:hover::before {
  left: 100%;
}
.gallery-categories .category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}
.gallery-categories .category-btn.active {
  background: linear-gradient(135deg, #8b4513 0, sienna 100%);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
  transform: translateY(-2px);
}
.gallery-container {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 300px;
  gap: 20px;
  padding: 20px 0;
}
.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  background: #f8f9fa;
}
.gallery-grid .gallery-item:nth-child(4n + 1) {
  grid-row: span 1;
  grid-column: span 1;
}
.gallery-grid .gallery-item:nth-child(4n + 2) {
  grid-row: span 1;
  grid-column: span 1;
}
.gallery-grid .gallery-item:nth-child(4n + 3) {
  grid-row: span 2;
  grid-column: span 1;
}
.gallery-grid .gallery-item:nth-child(4n + 4) {
  grid-row: span 1;
  grid-column: span 1;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid .gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-grid .gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(211, 93, 148, 0.8),
    rgba(123, 56, 125, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}
.gallery-grid .gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.view-photo-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.gallery-grid.infinite-scroll {
  animation: galleryInfiniteScroll 60s linear infinite;
  will-change: transform;
}
@keyframes galleryInfiniteScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.gallery-grid.infinite-scroll:hover {
  animation-play-state: paused;
}
.youtube-thumb-link {
  display: block;
  text-align: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(211, 93, 148, 0.1),
    0 1.5px 8px rgba(255, 158, 195, 0.1);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s;
}
.youtube-thumb-link:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(211, 93, 148, 0.18),
    0 3px 16px rgba(255, 158, 195, 0.15);
}
.youtube-thumb-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #f8e8ed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.youtube-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: filter 0.3s;
}
.youtube-thumb-link:hover .youtube-thumb-img {
  filter: brightness(0.92) blur(1px);
}
.youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #d35d94 60%, #ff9ec3 100%);
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 24px rgba(211, 93, 148, 0.18);
  opacity: 0.92;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
}
.youtube-thumb-link:hover .youtube-play-btn {
  background: linear-gradient(135deg, #ff9ec3 60%, #d35d94 100%);
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 1;
}
@media (max-width: 768px) {
  .youtube-thumb-frame {
    border-radius: 12px;
  }
  .youtube-play-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}
.youtube-video-wrapper {
  margin-bottom: 2.5rem;
}
.youtube-thumb-img {
  background: #f8e8ed;
}
.dev-link {
  color: #fff;
  text-decoration: none;
}
.dev-link:hover {
  text-decoration: underline;
  color: #d35d94;
}
