body { font-family: 'Manrope', sans-serif; }

.font-light {
  font-weight: 100;
}
.font-medium {
  font-weight: 500;
}

@font-face {
  font-family: 'Miguer Sans';
  src: url('fonts/MiguerSans-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
.miguer {
  font-family: 'Miguer Sans', sans-serif !important;
  font-size: 25px !important;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}
.miguer-plus {
  font-family: 'Miguer Sans', sans-serif !important;
  font-size: 50px !important;
  line-height: 1.1;
  letter-spacing: 0;
}

@keyframes revealText {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes popupFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.animate-reveal-text {
  animation: revealText 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gradient-text {
  background: linear-gradient(90deg, #ffffff, #FFC2A7, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 8s ease infinite;
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in {
  animation: slideIn 0.3s ease-out forwards;
}

.popup-animation {
  animation: popupFadeIn 0.3s ease-out forwards;
}

#popupOverlay {
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#popupOverlay.active {
  opacity: 1;
}

[id$="Popup"] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1000;
  margin: auto;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mobile-menu.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }

  .mobile-menu-logo {
    height: 2rem;
  }

  .mobile-menu ul {
    width: 100%;
    margin-top: 0;
    flex: 1;
  }

  .mobile-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .mobile-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
  .mobile-menu li:nth-child(3) { transition-delay: 0.3s; }
  .mobile-menu li:nth-child(4) { transition-delay: 0.4s; }
  .mobile-menu li:nth-child(5) { transition-delay: 0.5s; }
  .mobile-menu li:nth-child(6) { transition-delay: 0.6s; }
  .mobile-menu li:nth-child(7) { transition-delay: 0.7s; }

  .mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
  }

  .mobile-menu a:hover {
    color: #D26A3A;
    padding-left: 1rem;
  }

  .mobile-menu-close {
    color: white;
    padding: 0.5rem;
  }

  .mobile-menu-close svg {
    width: 24px;
    height: 24px;
  }

  .mobile-menu-buttons {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 0 0.75rem;
  }

  .mobile-menu-button {
    flex: 1;
    background: #D26A3A;
    color: white;
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .mobile-menu-button.secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
  }

  .mobile-menu-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .mobile-menu-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-menu-social-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .mobile-menu-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

  .mobile-menu-social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
  }

  .mobile-menu-social-icons a:hover {
    color: #D26A3A;
    transform: translateY(-3px);
    padding-left: 0;
  }

  .mobile-form {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 100;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-form.active {
    display: block !important;
    opacity: 1;
  }

  .mobile-form-trigger {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    background: #D26A3A;
    color: white;
    padding: 12px 24px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@font-face {
  font-family: 'Miguer Sans';
  src: url('fonts/MiguerSans-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
.miguer {
  font-family: 'Miguer Sans', sans-serif !important;
  font-size: 25px !important;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}
.miguer-plus {
  font-family: 'Miguer Sans', sans-serif !important;
  font-size: 50px !important;
  line-height: 1.1;
  letter-spacing: 0;
}
.mobile-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
  height: auto;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.mobile-form.active {
  display: block;
}

.mobile-form-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.mobile-form-overlay.active {
  display: block;
}

@media (min-width: 768px) {
  .mobile-form {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block;
    width: 100%;
    max-width: none;
    z-index: 1;
    padding: 40px;
  }
}

/* Swiper Navigation Styles */
.heroSwiper {
  position: relative;
  height: 100vh;
  width: 100%;
}

.heroSwiper .swiper-slide {
  height: 100vh;
  width: 100%;
  position: relative;
}

.heroSwiper .swiper-slide .absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.heroSwiper .swiper-slide .absolute .bg-cover {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  top: auto;
  bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.heroSwiper .swiper-button-next {
  right: calc(50% - 70px);
}

.heroSwiper .swiper-button-prev {
  left: calc(50% - 70px);
}

@media (min-width: 768px) {
  .heroSwiper {
    padding-bottom: 80px !important;
  }

  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    bottom: 20px;
  }

  .heroSwiper .swiper-button-next {
    right: 50%;
    transform: translateX(20px);
  }

  .heroSwiper .swiper-button-prev {
    left: 50%;
    transform: translateX(-20px);
  }

  .heroSwiper .swiper-button-next:after,
  .heroSwiper .swiper-button-prev:after {
    font-size: 18px;
  }

  .heroSwiper .swiper-button-next:hover {
    transform: translateX(20px) translateY(-2px);
  }

  .heroSwiper .swiper-button-prev:hover {
    transform: translateX(-20px) translateY(-2px);
  }
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: normal;
}

@media (min-width: 1024px) {
  .heroSwiper .swiper-button-next {
    right: calc(50% - 100px);
  }

  .heroSwiper .swiper-button-prev {
    left: calc(50% - 100px);
  }
}

.heroSwiper .swiper-pagination {
  bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 100;
}

.heroSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: white;
  width: 24px;
}

.heroSwiper .swiper-slide {
  opacity: 0;
  transition: all 0.6s ease;
}

.heroSwiper .swiper-slide-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .heroSwiper {
    padding-bottom: 100px !important;
  }

  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    bottom: 30px;
  }

  .heroSwiper .swiper-button-next {
    right: calc(50% - 60px);
  }

  .heroSwiper .swiper-button-prev {
    left: calc(50% - 60px);
  }

  .heroSwiper .swiper-button-next:after,
  .heroSwiper .swiper-button-prev:after {
    font-size: 16px;
  }

  .heroSwiper .swiper-pagination {
    bottom: 30px;
  }
}

@keyframes marquee-left {
  0% { transform: translateX(0%);}
  100% { transform: translateX(-50%);}
}
@keyframes marquee-right {
  0% { transform: translateX(-50%);}
  100% { transform: translateX(0%);}
}
.animate-marquee-left {
  animation: marquee-left 50s linear infinite;
}
.animate-marquee-right {
  animation: marquee-right 50s linear infinite;
}
