
.parallax-cta {
  padding: 120px 0;
  min-height: 520px;
  isolation: isolate;
}

@media (max-width: 991px) {
  .parallax-cta {
    padding: 80px 0;
    min-height: auto;
  }
}


.parallax-cta{
  position: relative;
  overflow: hidden;
  background: none !important;
}
.parallax-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("../images/parallax/2.webp");
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  transform: translate3d(0, var(--pv-parallax-y, 0px), 0) scale(1.12);
  will-change: transform;
    z-index: 0; 
  pointer-events: none;
}
.parallax-cta .parallax-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1;
  pointer-events: none;
}
.parallax-cta .parallax-content{
  position: relative;
  z-index: 2;
}

.body-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
}

.offcanvas-menu .body-backdrop {
  display: block;
}

video {
  width: 100%;
  height: auto;
  display: block;
}

.site-navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.site-navbar {
    position: relative !important;
}

.site-menu > li > a {
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    transition: color 0.3s ease;
}

.site-menu > li > a:hover {
    color: #d62196;
}

.ls-1 { letter-spacing: 1px; }

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.script-font {
    font-family: 'Great Vibes', cursive; /* El yazısı fontu */
    font-size: 3.5rem;
    font-weight: 400;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.highlight-text {
    color: #f47920;
    background: -webkit-linear-gradient(45deg, #d62196, #f47920);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1em;
    font-style: italic;
}

@media (max-width: 991px) {
    .parallax-cta {
        background-attachment: scroll;
        padding: 80px 0;
        background-position: center center;
    }
    
    .script-font {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .parallax-cta .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .parallax-cta .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    #top {
        padding-top: 115px !important; 
    }
}

@media (max-width: 991px) {
    .site-navbar .row {
        min-height: 80px !important;
    }
    
    .site-logo img {
        max-height: 60px !important;
    }

    #top {
        padding-top: 80px !important; 
    }

    #top .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
}

.btn-vivid {
    background: linear-gradient(45deg, #d62196, #f47920);
    color: #fff !important;
    border: none;
    padding: 14px 28px !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(214, 33, 150, 0.4);
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap !important;
    min-width: max-content;
}

.btn-vivid i {
    font-size: 18px;
    margin-right: 8px !important;
}

.btn-vivid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 33, 150, 0.6);
    color: #fff !important;
}

@keyframes pulseHeart {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.animate-pulse {
    animation: pulseHeart 1.5s infinite;
}

.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    color: #FFF;
}

.float-scrolltop {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background-color: #333;
    color: #FFF;
    border-radius: 12px;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.float-scrolltop.active {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
}

.float-scrolltop:hover {
    background-color: #000;
    opacity: 1;
    transform: translateY(-5px);
    color: #FFF;
}

@media (max-width: 768px) {
    .float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }
    .float-scrolltop {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

.site-mobile-menu .reservation-calendar {
    text-align: center !important;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 0 !important;
}

.site-mobile-menu .reservation-calendar a {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 auto;
}

@media (max-width: 991px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

.pb0  { padding-bottom: 0 !important; }

.pv-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.85);
}

.pv-footer__container {
  padding-top: 64px;
  padding-bottom: 32px;
}

.pv-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.pv-footer__logo {
  height: 44px;
  width: auto;
}

.pv-footer__desc {
  margin: 16px 0 18px;
  max-width: 380px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.pv-footer__title {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}

.pv-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pv-footer__list li {
  margin-bottom: 10px;
}

.pv-footer__list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.pv-footer__list a:hover {
  color: #ffffff;
}

.pv-footer__social {
  display: flex;
  gap: 10px;
}

.pv-footer__socialBtn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
}

.pv-footer__socialBtn:hover {
  background: rgba(255, 255, 255, 0.10);
}

.pv-footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pv-footer__contact i {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.85);
}

.pv-footer__cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.pv-footer__cta:hover {
  background: rgba(255, 255, 255, 0.14);
}

.pv-footer__contact-block {
  margin-top: 0.5rem; /* mt-2: sosyal medya ile telefon arası boşluk */
}

.pv-footer__contact-block .pv-footer__cta {
  margin-top: 12px;
}

.pv-footer__empty-blog {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.9rem;
}

.pv-footer__bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .pv-footer__container {
    padding-top: 48px;
  }
  .pv-footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

.single-video-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9 / 16;
    border-radius: 30px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 8px solid #fff;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.single-video-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.single-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #333;
}

.video-badge i {
    color: #b38728;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #b38728;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #fdfbf7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #b38728;
    font-size: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-number::after {
    content: "+";
    font-size: 2rem;
    vertical-align: top;
    color: #b38728;
}

.stat-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.stat-number .unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b38728;
    margin-left: 5px;
    vertical-align: baseline;
}

.separator-line {
    width: 60px;
    height: 3px;
    background: #b38728;
    border-radius: 3px;
    opacity: 0.7;
}

.premium-service-card {
    text-align: center;
    padding: 15px;
    transition: transform 0.4s ease;
    cursor: default; 
}

.premium-service-card .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #000;
}

.premium-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.9;
}

.frame-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    opacity: 0.5;
    transition: all 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.premium-service-card:hover .image-frame {
    box-shadow: 0 15px 40px rgba(179, 135, 40, 0.2);
}

.premium-service-card:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.premium-service-card:hover .frame-border {
    border-color: #b38728;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 1;
    border-width: 2px;
}

/* Yazı Alanı */
.service-info {
    position: relative;
    padding-top: 5px;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    color: #333;
    transition: color 0.3s ease;
}

.premium-service-card:hover .service-name {
    color: #b38728;
}

.service-sub {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    font-style: italic;
    font-family: serif;
}


.gallerySwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
}

.gallerySwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    height: 420px;
    opacity: 0.65;
    transition: opacity 0.25s ease;
}

@media (min-width: 768px) {
    .gallerySwiper .swiper-slide {
        width: 400px;
        height: 520px;
    }
}

.gallerySwiper .swiper-slide-active {
    opacity: 1;
    z-index: 10;
}

.gallery-card {
    background: #fff;
    padding: 15px 15px 60px 15px;
    width: 100%;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 4px;
    position: relative;
    transform: rotate(0deg);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #eee;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: #333;
    transform: rotate(-2deg);
}

.gallerySwiper .swiper-pagination-bullet-active {
    background: #b38728;
}

.pv-hero-swiper { width: 100%; }
.pv-hero-swiper .swiper-slide img {
  width: 100%;
  height: clamp(220px, 38vw, 520px);
  object-fit: cover;
  display: block;
}

.pv-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.pv-footer__copyright {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.pv-footer__credits {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pv-footer__credit-link img {
    height: 24px;
    width: auto;
    display: block;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.pv-footer__credit-link:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

.pv-footer__credit-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-weight: 300;
    user-select: none;
}

@media (max-width: 768px) {
    .pv-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

.pv-footer__credit-link img {
    height: 18px;
    width: auto !important;
    max-width: none;
    object-fit: contain;
    
    display: inline-block;
    vertical-align: middle;

    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.pv-home-blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pv-home-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.pv-home-blog-image {
    position: relative;
    overflow: hidden;
}

.pv-home-blog-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pv-home-blog-card:hover .pv-home-blog-image img {
    transform: scale(1.04);
}

.pv-home-blog-body {
    padding: 1.25rem 1.25rem 1.35rem;
}

.pv-home-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0.85rem;
}

.pv-home-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #7b6d63;
    background: #f8f3ec;
    border: 1px solid rgba(179, 135, 40, 0.12);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
}

.pv-home-blog-meta i {
    color: #b38728;
}

.pv-home-blog-title {
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.pv-home-blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5f5a55;
    margin-bottom: 1rem;
}

.pv-home-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #b38728;
    transition: gap 0.25s ease;
}

.pv-home-blog-card:hover .pv-home-blog-link {
    gap: 12px;
}