/* ============================================
   ALANYA SPA - MODERN OTTOMAN MINIMALISM
   Tasarım: Lüks Hamam Deneyimi
   Renkler: Terrakotta, Krem, Altın, Koyu Kahve
   ============================================ */

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

:root {
    --cream: #F5F1E8;
    --terracotta: #C85A54;
    --gold: #D4AF37;
    --dark-brown: #3E2723;
    --light-brown: #8D6E63;
    --white: #FFFFFF;
    --shadow: 0 8px 32px rgba(62, 39, 35, 0.15);
    --shadow-light: 0 4px 16px rgba(62, 39, 35, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--dark-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
    background: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: var(--shadow-light);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--dark-brown);
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 25px;
    text-decoration: none;
}

.lang-btn.active {
    background: var(--terracotta);
    color: var(--white);
}

.lang-btn:hover {
    background: var(--gold);
    color: var(--dark-brown);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 30px 0;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--dark-brown);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.logo .tagline {
    font-size: 14px;
    color: var(--terracotta);
    font-weight: 300;
    margin: 5px 0 0 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

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

.nav a:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 0 40px;
    z-index: 10;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: var(--light-brown);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--terracotta) 0%, #B84A45 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(200, 90, 84, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200, 90, 84, 0.4);
    background: linear-gradient(135deg, #B84A45 0%, var(--terracotta) 100%);
}

.hero-background {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 1s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(212, 175, 55, 0.03) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    text-align: center;
    color: var(--dark-brown);
    margin-bottom: 60px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--dark-brown);
    padding: 20px 20px 10px;
    font-weight: 700;
}

.service-card p {
    color: var(--light-brown);
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--dark-brown);
    margin-bottom: 30px;
    font-weight: 700;
}

.about p {
    font-size: 16px;
    color: var(--light-brown);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    text-align: center;
    color: var(--dark-brown);
    margin-bottom: 60px;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    text-align: center;
    color: var(--dark-brown);
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--dark-brown);
    margin-bottom: 15px;
    line-height: 1.8;
    font-style: italic;
}

.stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-brown) 0%, #5D4037 100%);
    color: var(--white);
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
    font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.info-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.submit-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #C99F2E 100%);
    color: var(--dark-brown);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer p {
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* ============================================
   FLOATING ACTION BUTTONS (FAB)
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: var(--white);
    border: none;
    cursor: pointer;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.fab:active {
    transform: scale(0.95);
}

/* WhatsApp Butonu */
.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
}

.fab-whatsapp:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1BA850 100%);
}

/* Arama Butonu */
.fab-call {
    background: linear-gradient(135deg, var(--terracotta) 0%, #B84A45 100%);
}

.fab-call:hover {
    background: linear-gradient(135deg, #B84A45 0%, #A83D38 100%);
}

/* Yol Tarifi Butonu */
.fab-maps {
    background: linear-gradient(135deg, var(--gold) 0%, #C99F2E 100%);
    color: var(--dark-brown);
}

.fab-maps:hover {
    background: linear-gradient(135deg, #C99F2E 0%, #B88F1F 100%);
}

/* Floating Buttons Animasyonu */
@keyframes fabPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    }
}

.fab {
    animation: fabPulse 2s ease-in-out infinite;
}

.fab:hover {
    animation: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 0;
        gap: 40px;
    }

    .hero-content h2 {
        font-size: 42px;
    }

    .hero-background {
        height: 350px;
    }

    .services h2,
    .gallery h2,
    .testimonials h2,
    .contact h2,
    .about h2 {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        width: 55px;
        height: 55px;
    }

    .logo h1 {
        font-size: 32px;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }

    .fab {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .services h2,
    .gallery h2,
    .testimonials h2,
    .contact h2,
    .about h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .logo {
        gap: 10px;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .logo .tagline {
        font-size: 12px;
    }

    .nav {
        gap: 15px;
    }

    .nav a {
        font-size: 14px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.testimonial-card,
.gallery-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
