/* Demo Otel - Kapadokya Butik Otel */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #8b6914;
    --primary-light: #c9a84c;
    --primary-dark: #6b5010;
    --bg: #0c0a06;
    --bg-card: #161310;
    --bg-section: #0f0d09;
    --text: #f5f0e6;
    --text-muted: rgba(245, 240, 230, 0.5);
    --border: rgba(201, 168, 76, 0.12);
    --gold: #c9a84c;
    --gold-soft: rgba(201, 168, 76, 0.08);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.section-pad {
    padding: 100px 0;
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(12, 10, 6, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    transition: all 0.4s;
}

.site-header.scrolled {
    background: rgba(12, 10, 6, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo-text small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.nav-cta {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    background: linear-gradient(180deg, rgba(12, 10, 6, 0.3) 0%, var(--bg) 100%),
        url('https://images.unsplash.com/photo-1641128324972-af3212f0f6bd?w=1920&q=80') center/cover no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, var(--bg));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    padding: 15px 32px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
}

/* Stars */
.stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 1.1rem;
}

/* ── Section Title ── */
.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title .label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 14px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Rooms ── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.room-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

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

.room-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1608 0%, #2a2010 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-img i {
    font-size: 3rem;
    color: rgba(201, 168, 76, 0.2);
}

.room-img .room-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 6px 14px;
    background: rgba(12, 10, 6, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
}

.room-body {
    padding: 22px 20px;
}

.room-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.room-body p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.room-amenities span {
    padding: 4px 10px;
    background: var(--gold-soft);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gold);
}

.room-body .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.84rem;
    border-radius: 10px;
}

/* ── Features ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 36px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gold-soft);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--gold);
}

.feature-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1608, #2a2010);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    cursor: pointer;
}

.gallery-item i {
    font-size: 2rem;
    color: rgba(201, 168, 76, 0.15);
}

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

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
}

.testimonial-name {
    font-size: 0.82rem;
    font-weight: 700;
}

.testimonial-from {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ── CTA ── */
.cta-section {
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(139, 105, 20, 0.04) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 14px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--gold-soft);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.contact-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 360px;
    background: var(--bg-card);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.5) brightness(0.7);
}

/* ── Footer ── */
.site-footer {
    padding: 48px 24px 28px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

/* ── Chatbot widget overflow fix ── */
#capado-widget #capado-box {
    max-width: calc(100vw - 40px) !important;
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(12, 10, 6, 0.97);
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(20px);
    }

    .hero-title {
        font-size: 2.4rem;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 2;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }

    .section-pad {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item:first-child {
        grid-column: span 1;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}