:root {
    --dark: #0c0b09;
    --dark-2: #15110d;
    --gold: #c99a55;
    --gold-2: #e3bd78;
    --cream: #f6f0e7;
    --text: #222;
    --muted: #6f6a63;
    --white: #fff;
    --border: rgba(201, 154, 85, .25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--cream);
}

body.rtl {
    font-family: Arial, Tahoma, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    z-index: 50;
    inset: 0 0 auto 0;
    background: rgba(8, 7, 6, .82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: .3s ease;
}

.site-header.scrolled {
    background: rgba(8, 7, 6, .96);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-2);
    min-width: 210px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: Georgia, serif;
    font-weight: bold;
    color: var(--gold-2);
}

.brand strong {
    display: block;
    font-family: Georgia, serif;
    letter-spacing: 2px;
    font-size: 20px;
}

.brand small {
    display: block;
    letter-spacing: 5px;
    font-size: 11px;
    color: #fff;
    opacity: .75;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.main-nav a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    opacity: .88;
    transition: .2s;
}

.main-nav a:hover {
    color: var(--gold-2);
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-select {
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #111;
    color: #fff;
    padding: 0 8px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #111;
    border: 1px solid var(--gold);
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    transition: .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--gold-2);
}

.btn-outline {
    background: transparent;
    color: var(--gold-2);
}

.btn-outline:hover {
    background: var(--gold);
    color: #111;
}

.btn-dark {
    background: #111;
    border-color: #111;
    color: #fff;
}

.btn-large {
    min-height: 54px;
    padding: 0 30px;
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.hero-bg,
.hero-bg picture,
.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.38), rgba(0,0,0,.78)),
        linear-gradient(0deg, rgba(0,0,0,.48), rgba(0,0,0,.08));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding-top: 80px;
}

.eyebrow {
    display: inline-block;
    color: var(--gold-2);
    letter-spacing: 5px;
    font-size: 13px;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(54px, 8vw, 100px);
    line-height: 1;
    margin: 0 0 22px;
    font-weight: 400;
}

.hero p {
    max-width: 780px;
    margin: 0 auto 34px;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.5;
    color: #f3dfbd;
}

.intro-section {
    background: var(--cream);
    padding: 90px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 70px;
    align-items: center;
}

.section-kicker,
.section-heading span {
    display: block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.intro-text h2,
.section-heading h2 {
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.05;
    margin: 0 0 22px;
    font-weight: 400;
}

.intro-text p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    border-left: 1px solid rgba(0,0,0,.1);
    padding-left: 48px;
}

.rtl .features-grid {
    border-left: 0;
    border-right: 1px solid rgba(0,0,0,.1);
    padding-left: 0;
    padding-right: 48px;
}

.feature-card {
    padding: 10px;
}

.feature-icon {
    color: var(--gold);
    font-size: 38px;
    margin-bottom: 12px;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: 22px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.gallery-section {
    background: var(--dark);
    padding: 90px 0 100px;
    color: #fff;
}

.center {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.gallery-card {
    position: relative;
    min-height: 245px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    background: #111;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 245px;
    object-fit: cover;
    transition: .35s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(0,0,0,.82));
}

.gallery-card strong {
    position: absolute;
    z-index: 2;
    left: 15px;
    right: 15px;
    bottom: 15px;
    font-size: 14px;
    color: #fff;
}

.social-section {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.social-bg,
.social-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.social-bg img {
    object-fit: cover;
}

.social-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.52), rgba(0,0,0,.28));
}

.social-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.social-content > div {
    max-width: 540px;
}

.social-content h2 {
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    margin: 0 0 22px;
    font-weight: 400;
}

.social-content h2 em {
    display: block;
    color: var(--gold-2);
    font-style: italic;
}

.social-content p {
    color: #eee;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 28px;
}

.highlights {
    background: #fff;
    padding: 50px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.highlight-item {
    border-right: 1px solid rgba(0,0,0,.08);
    padding-right: 28px;
}

.rtl .highlight-item {
    border-right: 0;
    border-left: 1px solid rgba(0,0,0,.08);
    padding-right: 0;
    padding-left: 28px;
}

.highlight-item:last-child {
    border-right: 0;
}

.rtl .highlight-item:last-child {
    border-left: 0;
}

.highlight-item span {
    color: var(--gold);
    font-size: 34px;
}

.highlight-item h3 {
    font-family: Georgia, serif;
    text-transform: uppercase;
    font-size: 17px;
    margin: 12px 0 8px;
}

.highlight-item p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.site-footer {
    background: var(--dark);
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr 1.1fr 1fr;
    gap: 48px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-about p,
.site-footer p,
.site-footer li {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    font-size: 14px;
}

.site-footer h3 {
    color: var(--gold-2);
    margin: 0 0 18px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: var(--gold-2);
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: bold;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px;
    text-align: center;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .main-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 82px;
        background: #111;
        padding: 18px;
        border-radius: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .header-inner {
        justify-content: space-between;
    }

    .brand {
        min-width: auto;
    }

    .btn-outline {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        border-left: 0;
        padding-left: 0;
    }

    .rtl .features-grid {
        border-right: 0;
        padding-right: 0;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        min-height: 680px;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand strong {
        font-size: 16px;
    }

    .brand small {
        letter-spacing: 3px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .intro-section,
    .gallery-section {
        padding: 60px 0;
    }

    .features-grid,
    .gallery-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .social-section {
        min-height: 560px;
    }

    .highlight-item,
    .rtl .highlight-item {
        border: 0;
        padding: 0;
    }

    .lang-select {
        max-width: 68px;
    }
}
.feature-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
}

.feature-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    display: block;
}

.highlight-icon {
    width: 46px;
    height: 46px;
    display: block;
    margin-bottom: 12px;
}

.highlight-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}
.feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
}

.feature-icon img {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: contain;
    background: transparent !important;
}

.highlight-icon {
    width: 38px;
    height: 38px;
    display: block;
    margin-bottom: 10px;
    background: transparent !important;
    border: 0 !important;
    overflow: hidden;
}

.highlight-icon img {
    width: 38px;
    height: 38px;
    display: block;
    object-fit: contain;
    background: transparent !important;
}
.map-section {
    background: #ddd6ca;
    margin: 0;
    padding: 0;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 320px;
}

.contact-reservation-section {
    background: #e7e0d5;
    padding: 70px 0 80px;
}

.contact-reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-reservation-info h2 {
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    margin: 0 0 20px;
    font-weight: 700;
    color: #111;
}

.contact-reservation-info p {
    color: #3f3a34;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 22px;
}

.contact-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-detail-list li {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: #111;
}

.contact-detail-list strong {
    color: #111;
}

.contact-reservation-form-wrap {
    background: #f3efe9;
    padding: 26px;
    border: 1px solid rgba(0,0,0,.08);
}

.contact-reservation-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-reservation-form input,
.contact-reservation-form select,
.contact-reservation-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d1c8bc;
    background: #f8f5f0;
    padding: 12px 14px;
    font-size: 14px;
    color: #111;
    outline: none;
    border-radius: 0;
}

.contact-reservation-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-submit-btn {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .contact-reservation-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .map-section iframe {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-reservation-section {
        padding: 50px 0 60px;
    }

    .contact-reservation-form-wrap {
        padding: 18px;
    }
}
.form-alert {
    padding: 13px 15px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 0;
    font-weight: 600;
}

.form-alert-success {
    background: #e8f6ea;
    border: 1px solid #96cf9d;
    color: #1f6d2a;
}

.form-alert-error {
    background: #fdeaea;
    border: 1px solid #e2a1a1;
    color: #9a1d1d;
}
.bar-section {
    background: #f4eee5;
    padding: 90px 0;
}

.bar-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
}

.bar-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0,0,0,.18);
    border: 1px solid rgba(0,0,0,.08);
}

.bar-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.bar-content h2 {
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    margin: 0 0 22px;
    font-weight: 400;
    color: #111;
}

.bar-content p {
    color: #5f5549;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 18px;
}

.bar-content .btn {
    margin-top: 12px;
}

@media (max-width: 900px) {
    .bar-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .bar-image img {
        height: 420px;
    }
}

@media (max-width: 600px) {
    .bar-section {
        padding: 60px 0;
    }

    .bar-image img {
        height: 320px;
    }
}
.socials {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: grid;
    place-items: center;
    transition: .25s ease;
}

.socials a:hover {
    background: rgba(201,154,85,.18);
    transform: translateY(-2px);
}

.socials img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}
.hero-slider {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 760px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide .hero-bg,
.hero-slide .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide .hero-bg img {
    object-fit: cover;
}

.hero-overlay-day {
    background:
        linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.24), rgba(0,0,0,.52)),
        linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,.08));
}

.hero-dots {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--gold-2);
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold-2);
}

@media (max-width: 680px) {
    .hero-slider,
    .hero-slide {
        min-height: 680px;
    }

    .hero-dots {
        bottom: 22px;
    }
}
.kvkk-hero {
    background: var(--dark);
    color: #fff;
    padding: 160px 0 80px;
    text-align: center;
}

.kvkk-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 400;
    margin: 0 0 18px;
}

.kvkk-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
}

.kvkk-content-section {
    background: var(--cream);
    padding: 70px 0 90px;
}

.kvkk-content {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 46px;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.kvkk-content h2 {
    font-family: Georgia, serif;
    font-size: 26px;
    margin: 34px 0 12px;
    color: #111;
}

.kvkk-content h2:first-child {
    margin-top: 0;
}

.kvkk-content p {
    color: #5f5549;
    line-height: 1.85;
    font-size: 16px;
    margin: 0;
}

.kvkk-back {
    margin-top: 36px;
}

@media (max-width: 680px) {
    .kvkk-hero {
        padding: 130px 0 60px;
    }

    .kvkk-content {
        padding: 28px 22px;
        border-radius: 12px;
    }

    .kvkk-content h2 {
        font-size: 22px;
    }
}