/* KONAKLI HAMAM MASAJ SALONU - CSS */

:root {
    --bg-dark: #1A0F0A;
    --bg-light: #16120D;
    --gold: #C9A84C;
    --gold-light: #D4B86A;
    --cream: #F5E6D3;
    --text-light: #E8DCC8;
    --border: rgba(201, 168, 76, 0.2);
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(26, 15, 10, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-main {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.logo-sub {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
}

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

.btn-gold {
    background: linear-gradient(135deg, #B8956A, #D4B86A, #B8956A);
    background-size: 200% 200%;
    color: var(--bg-dark);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-gold:hover {
    background-position: right center;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}
/* NAV RIGHT */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* DROPDOWN */
.lang-dropdown {
    position: relative;
}

/* MAIN FLAG */
.flag-main {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid #d4af37;
    transition: 0.3s;
}

.flag-main:hover {
    transform: scale(1.08);
}

/* MENU */
.lang-menu {
    position: absolute;
    top: 45px;
    left: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s;
    z-index: 999;
}

/* FLAGS INSIDE */
.lang-menu img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    transition: 0.25s;
}

.lang-menu img:hover {
    transform: scale(1.1);
}

/* ACTIVE */
.lang-dropdown.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    .flag-main {
        width: 30px;
        height: 30px;
    }

    .lang-menu img {
        width: 26px;
        height: 26px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(26, 15, 10, 0.9) 40%, rgba(26, 15, 10, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: rgba(201, 168, 76, 0.8);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
}

.stat-unit {
    color: rgba(201, 168, 76, 0.7);
    font-size: 0.8rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: rgba(17, 12, 10, 0.5);
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gold-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto 3rem;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Flag style */
.lang-switcher {
    display: flex;
    gap: 6px;
}

.flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    transition: 0.3s;
}

.flag:hover {
    transform: scale(1.1);
    border-color: #d4af37;
}

.flag.active {
    border-color: #d4af37;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(22, 18, 13, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.duration {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.2em;
}

.price {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.cta-center {
    text-align: center;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(19, 14, 11, 0.5);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.rating-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 130px;
    height: 130px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rating-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.rating-label {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--bg-dark);
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: rgba(16, 11, 9, 0.5);
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-item.large {
    grid-row: span 2;
    height: auto;
}

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

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(26, 15, 10, 0.8), transparent);
    color: white;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: rgba(20, 15, 12, 0.5);
    position: relative;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(22, 18, 13, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2rem;
    position: relative;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-country {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: rgba(17, 12, 10, 0.5);
}

.pricing h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(22, 18, 13, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2rem;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.6);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    font-weight: 600;
}

.pricing-card.popular {
    padding-top: 3rem;
}

.pricing-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.duration {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.checkmark {
    color: var(--gold);
    font-weight: bold;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-package:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: rgba(19, 14, 11, 0.5);
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    flex-shrink: 0;
}

.contact-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-map {
    border: 1px solid rgba(201, 168, 76, 0.2);
    overflow: hidden;
}

.contact-map iframe {
    filter: invert(90%) hue-rotate(180deg);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: rgba(14, 9, 7, 0.8);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.footer-sub {
    font-family: 'Cinzel', serif;
    color: rgba(201, 168, 76, 0.6);
    font-size: 0.6rem;
    letter-spacing: 0.35em;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    line-height: 1.6;
    font-weight: 300;
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.1em;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

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

    .gallery-item.large {
        grid-row: auto;
    }

    .container {
        padding: 0 1rem;
    }
}
