/* BLOK STILLERI - blocks.css */

/* --- Eylem Ã‡aÄŸrÄ±sÄ± (CTA) --- */
.cta-luxury {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* --- Galeri --- */
.blok-gallery {
    margin: 3rem 0;
}

.blok-gallery .blok-baslik {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(var(--kolon, 3), 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Hizmetler --- */
.service-card {
    border-bottom: 4px solid transparent !important;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
    border-color: var(--primary-color) !important;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* --- ManÅŸet (Hero) --- */
.vh-100 {
    height: 100vh !important;
}

.vh-90 {
    height: 90vh !important;
}

.ls-3 {
    letter-spacing: 3px;
}

.ls-2 {
    letter-spacing: 2px;
}

.wedding-hero {
    background-color: #1a1a1a;
}

.bridal-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1.1;
    font-style: italic;
}

.bridal-subtitle {
    letter-spacing: 5px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.divider-bridal {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.btn-bridal-outline {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.btn-bridal-outline:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.0);
    }
}

.zoom-effect {
    animation: zoomOut 10s ease-out forwards;
}

@keyframes fadeInUpElegant {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUpElegant 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 2s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: #fff;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .bridal-title {
        font-size: 3.5rem;
    }
}

/* --- Ã–nce Sonra Slider --- */
.ba-slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/9;
    user-select: none;
}

.ba-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-slider-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-slider-before {
    z-index: 1;
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.ba-slider-after {
    z-index: 0;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 4px;
    margin-left: -2px;
    background: rgba(255, 255, 255, 0.8);
    cursor: ew-resize;
    z-index: 10;
    pointer-events: none;
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.ba-slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
    margin: 0;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 5;
    pointer-events: none;
}

.ba-label-before {
    left: 20px;
}

.ba-label-after {
    right: 20px;
}

/* --- SEO Metni --- */
.seo-content {
    font-size: 0.95rem;
    line-height: 1.8;
}

.seo-content h2,
.seo-content h3 {
    color: var(--primary-color, #333);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.seo-content p {
    margin-bottom: 1rem;
}

.seo-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.seo-content a {
    color: #c5a059;
    text-decoration: underline;
}

/* --- SSS (FAQ) --- */
.blok-faq {
    margin: 3rem 0.7rem;
}

.blok-faq .blok-baslik {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.faq-listesi {
    max-width: 800px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.faq-soru {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.faq-soru:hover {
    background: #e9ecef;
}

.faq-ikon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-ikon {
    transform: rotate(45deg);
}

.faq-cevap {
    display: none;
    padding: 1.5rem;
    background: white;
}

.faq-item.active .faq-cevap {
    display: block;
}

/* --- Video Slider --- */
.video-slider-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-slider-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* --- Premium Grid Video (Hover Effect) --- */
.video-hover-card {
    position: relative;
    overflow: hidden;
    /* collection-panel stilini miras alÄ±r, ek olarak: */
}

.hover-video {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    /* Ä°Ã§eriÄŸin altÄ±nda, arkaplanÄ±n Ã¼stÃ¼nde */
    opacity: 0;
    transition: opacity 0.4s ease;
    object-fit: cover;
    pointer-events: none;
}

.video-hover-card:hover .hover-video {
    opacity: 1;
    z-index: 1;
}

.video-hover-card .collection-inner {
    position: relative;
    z-index: 2;
    /* Video Ã¼zerinde kalmasÄ± iÃ§in */
    pointer-events: none;
    /* Video Ã¼zerinde tÄ±klamayÄ± engellemez */
}

.video-hover-card .collection-inner a {
    pointer-events: auto;
    /* Link tÄ±klanabilir olsun */
}

.video-col:last-child {
    border-right: none !important;
}