:root {
    --primary-color: #d4af37; /* Metallic Gold */
    --secondary-color: #1a1a1a; /* Deep Charcoal */
    --accent-color: #f4e4bc; /* Light Cream/Champagne */
    --text-color: #e0e0e0;
    --white: #ffffff;
    --black: #000000;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px; /* Logo yüksekliği */
    width: auto;
    transition: var(--transition);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800; /* Kalın font */
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-left: 12px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

/* Instagram Section */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.instagram-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

header.scrolled .logo-text {
    font-size: 1.2rem;
}

header.scrolled .logo img {
    height: 50px; /* Kaydırıldığında küçülen logo */
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Hero Slider */
.slider-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.slide-content {
    position: absolute;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-nav button {
    background: rgba(212, 175, 55, 0.3);
    border: 1px solid var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(5px);
    pointer-events: auto;
    transition: var(--transition);
}

.slider-nav button:hover {
    background: var(--primary-color);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.underline {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto;
}

.bg-dark {
    background-color: #121212;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #bbb;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-image img {
    width: 100%;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    border-radius: 15px;
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--white);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--primary-color);
}

/* Masseuse Grid */
.masseuse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.masseuse-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    text-align: center;
}

.masseuse-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.masseuse-card:hover img {
    filter: brightness(70%);
}

.masseuse-card h3 {
    margin-top: 20px;
    color: var(--primary-color);
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1.2rem;
}

.contact-map {
    flex: 1;
    min-height: 300px;
    background: #222;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
}

.map-placeholder {
    text-align: center;
    color: var(--primary-color);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.footer {
    background-color: #0c0c0c;
    padding: 60px 0 100px 0; /* Space for mobile footer */
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-about {
    flex: 2;
    min-width: 300px;
}

.footer-about h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0.7;
}

.footer-social a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-contact-quick {
    flex: 1;
    min-width: 200px;
}

.footer-contact-quick h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.quick-msg-icons {
    display: flex;
    gap: 20px;
}

.quick-msg-icons a {
    font-size: 1.8rem;
    transition: var(--transition);
}

.q-whatsapp { color: #25d366; }
.q-telegram { color: #0088cc; }

.quick-msg-icons a:hover {
    transform: scale(1.2);
}

.footer-locations {
    flex: 1;
    min-width: 200px;
}

.footer-locations h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-locations ul {
    list-style: none;
}

.footer-locations li {
    margin-bottom: 10px;
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* Mobile Sticky Footer */
.mobile-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: none; /* Desktop hidden */
    grid-template-columns: repeat(4, 1fr);
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1.5px solid var(--primary-color);
    z-index: 2000;
    padding: 6px 4px;
    gap: 4px;
}

.mobile-footer a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px 10px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: transform 0.15s ease, opacity 0.15s ease;
    gap: 7px;
    border-radius: 12px;
}

.mobile-footer a i {
    font-size: 1.3rem;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-location { color: #ff6b6b; }
.btn-location i {
    background: rgba(234, 67, 53, 0.18);
    border: 1.5px solid rgba(234, 67, 53, 0.55);
    box-shadow: 0 4px 14px rgba(234, 67, 53, 0.35);
    color: #ff6b6b;
}

.btn-phone { color: #5bc8f5; }
.btn-phone i {
    background: rgba(52, 183, 241, 0.18);
    border: 1.5px solid rgba(52, 183, 241, 0.55);
    box-shadow: 0 4px 14px rgba(52, 183, 241, 0.35);
    color: #5bc8f5;
}

.btn-telegram { color: #5aabdd; }
.btn-telegram i {
    background: rgba(0, 136, 204, 0.18);
    border: 1.5px solid rgba(0, 136, 204, 0.55);
    box-shadow: 0 4px 14px rgba(0, 136, 204, 0.35);
    color: #5aabdd;
}

.btn-whatsapp { color: #43e07d; }
.btn-whatsapp i {
    background: rgba(37, 211, 102, 0.18);
    border: 1.5px solid rgba(37, 211, 102, 0.55);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    color: #43e07d;
}

.mobile-footer a:active {
    transform: scale(0.92);
    opacity: 0.75;
}

.mobile-footer a:active i {
    box-shadow: none;
    transform: scale(0.95);
}

/* Floating WhatsApp (Desktop) */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1500;
    transition: var(--transition);
    font-weight: 500;
}

.floating-whatsapp i {
    font-size: 1.8rem;
}

.floating-whatsapp:hover {
    transform: scale(1.05) translateY(-5px);
    background-color: #20ba5a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px; /* Header height offset */
        gap: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-bottom: 2px solid var(--primary-color);
        padding: 40px 0;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
        margin-left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .floating-whatsapp {
        display: none; /* Hide desktop button on mobile */
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }

    .about-content, .contact-wrapper {
        flex-direction: column;
    }

    .mobile-footer {
        display: grid;
    }

    .section {
        padding: 60px 0;
    }

    .logo-text {
        font-size: 1rem;
        margin-left: 8px;
    }
}
