/* Temel Stiller */
body {
    background-color: #F8F8F8;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    cursor: none;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Özel İmleç (Cursor) Stilleri */
.custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9999;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}
.cursor-outer {
    width: 30px;
    height: 30px;
    border: 1px solid #A88B68;
}
.cursor-inner {
    width: 8px;
    height: 8px;
    background-color: #A88B68;
    transform: translate(-50%, -50%);
}
.cursor-outer.hover {
    transform: scale(1.5);
}
.cursor-inner.hover {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Kaydırma Animasyonları */
.scroll-animate {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Header Stilleri */
.header-scrolled {
    background-color: rgba(248, 248, 248, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Hero (Banner) Slider Stilleri */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-slide img, .hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-nav-item {
    transition: color 0.3s ease;
}
.hero-nav-item.active {
    color: #A88B68;
}

/* Salonlarımız Slider Stilleri */
.venue-slider-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.venue-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 1rem;
    align-items: center;
}
@media (max-width: 1024px) {
    .venue-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .venue-slide > div:nth-child(1), .venue-slide > div:nth-child(3) {
        height: 300px;
    }
    .venue-slide > div:nth-child(2){
        order: -1;
    }
}

/* Kart Stilleri */
.card-image-wrapper {
    transition: transform 0.4s ease;
}
.card:hover .card-image-wrapper {
    transform: scale(1.05);
}

/* İletişim Bölümü Arka Plan Logosu */
#contact {
    position: relative;
    overflow: hidden;
}
#contact::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24rem;
    height: 24rem;
    transform: translate(-50%, -50%);
    background-image: url('logo1.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.07;
    z-index: 0;
}
#contact > div {
    position: relative;
    z-index: 1;
}

/* Hizmetlerimiz Sayfası Sekme Stilleri */
.tab-button.active {
    color: #A88B68;
}
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Teklif Al Modalı Stilleri */
#modalContent {
    transition: opacity 300ms ease-out, transform 300ms ease-out;
}

