* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}

/* HEADER */

.hero {
    height: 100vh;
    min-height: 560px;
    max-height: 720px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: #111;
}

.inner-header {
    background: #111;
    color: #fff;
    position: relative;
    z-index: 50;
}

.hero-slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    transition: opacity .8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .52);
    z-index: 1;
}

.navbar {
    position: relative;
    z-index: 20;
    padding: 26px 0 22px;
    overflow: visible;
    text-align: center;
}

.logo {
    float: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 22px;
}

.logo img {
    width: 160px;
    height: auto;
    display: block;
}

.social-menu {
    float: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 14px;
    white-space: nowrap;
}

.social-menu a {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-left: 7px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    vertical-align: top;
    transition: transform .2s ease, background .2s ease;
}

.social-menu a:hover {
    transform: translateY(-2px);
    background: #c65d2e;
}

.social-menu img {
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-top: 5px;
}

.language-menu {
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.language-menu select {
    background: rgba(0, 0, 0, .55);
    color: #fff;
    border: 1px solid #fff;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.language-menu select option {
    background: #fff;
    color: #111;
}

/* MENU */

.menu {
    clear: both;
    float: none;
    display: block;
    list-style: none;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 26px;
    text-align: center;
}

.menu li {
    float: none;
    display: inline-block;
    margin: 0 11px;
    position: relative;
    vertical-align: top;
}

.menu a {
    display: block;
    padding: 8px 0;
    transition: color .2s ease, background .2s ease;
}

.menu a:hover,
.menu a.active {
    color: #c65d2e;
}

/* DROPDOWN */

.has-submenu {
    position: relative;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 330px;
    background: #111;
    padding: 10px 0;
    list-style: none;
    z-index: 9999;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}

.submenu li {
    float: none;
    display: block;
    margin: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.has-submenu:hover .submenu li {
    opacity: 1;
    transform: translateY(0);
}

.has-submenu:hover .submenu li:nth-child(1) {
    transition-delay: .04s;
}

.has-submenu:hover .submenu li:nth-child(2) {
    transition-delay: .08s;
}

.has-submenu:hover .submenu li:nth-child(3) {
    transition-delay: .12s;
}

.has-submenu:hover .submenu li:nth-child(4) {
    transition-delay: .16s;
}

.has-submenu:hover .submenu li:nth-child(5) {
    transition-delay: .20s;
}

.submenu a {
    display: block;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    line-height: 1.35;
    white-space: normal;
    transition: background .22s ease, color .22s ease, padding-left .22s ease;
}

.submenu a:hover,
.submenu a.active {
    background: #c65d2e;
    color: #fff;
    padding-left: 26px;
}

/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    height: calc(100vh - 180px);
    min-height: 360px;
    max-height: 520px;
    text-align: center;
    padding: 110px 0 70px;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 34px;
    letter-spacing: 8px;
    max-width: 1000px;
    margin: 0 auto 38px;
    line-height: 1.35;
}

.hero-buttons {
    text-align: center;
}

.hero-buttons .btn {
    margin: 0 8px 10px;
}

.btn {
    display: inline-block;
    background: #0d8bff;
    color: #fff;
    padding: 22px 42px;
    font-size: 26px;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.btn:hover {
    background: #006fce;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    margin-top: -27px;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    line-height: 46px;
    cursor: pointer;
    z-index: 4;
    text-align: center;
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 4;
    text-align: center;
}

.hero-dot {
    width: 13px;
    height: 13px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    margin: 0 5px;
}

.hero-dots .active {
    background: #fff;
}

/* SPECIAL DAYS - KREM ARKA PLAN */

.special-days-section {
    background: #f7f4ee;
    padding: 80px 0;
}

.special-days-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.special-days-video {
    width: 34%;
    max-width: 330px;
    background: #111;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.special-days-video video {
    width: 100%;
    aspect-ratio: 9 / 16;
    display: block;
    object-fit: cover;
}

.special-days-content {
    width: 50%;
    max-width: 560px;
    background: #fff;
    padding: 48px 52px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}

.special-days-label {
    display: inline-block;
    color: #b9a279;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.special-days-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 22px;
    font-family: Georgia, 'Times New Roman', serif;
}

.special-days-content p {
    font-size: 20px;
    line-height: 1.75;
    color: #222;
    margin-bottom: 28px;
}

.special-days-btn {
    margin-top: 5px;
}

/* WHY / NEDEN BİZ - SİYAH DESENLİ ARKA PLAN */

.why {
    position: relative;
    overflow: hidden;
    background-color: #111;
    background-image: url('../img/arkaalan.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
}

.why-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    overflow: visible;
}

.why-content-box {
    width: 50%;
    background: rgba(255, 255, 255, .96);
    padding: 52px 50px;
    box-shadow: 0 14px 36px rgba(255, 255, 255, .18);
}

.why-content-box .script-title {
    text-align: left;
    font-size: 82px;
    line-height: 1;
    margin-bottom: 30px;
    color: #b9a279;
}

.why-text {
    font-size: 18px;
    line-height: 1.85;
    color: #222;
}

.why-text p {
    margin-bottom: 18px;
}

.why-benefits {
    list-style: none;
    margin-top: 26px;
}

.why-benefits li {
    position: relative;
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 6px;
    padding-left: 30px;
    color: #111;
}

.why-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #b9a279;
    font-weight: 900;
}

.why-image-box {
    width: 42%;
    max-width: 430px;
    height: 765px;
    margin-top: 0;
    overflow: hidden;
    background: #111;
    box-shadow: 0 18px 42px rgba(255, 255, 255, .26);
}

.why-image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* GENERAL SCRIPT TITLE */

.script-title {
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    font-size: 72px;
    color: #b9a279;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 32px;
}

/* HISTORY - KREM ARKA PLAN */

.history-section {
    background: #f7f4ee;
    padding: 80px 0;
}

.history-grid {
    overflow: hidden;
}

.history-image {
    float: left;
    width: 43%;
}

.history-image img {
    width: 100%;
    height: 460px;
    display: block;
    object-fit: cover;
    box-shadow: 0 18px 40px #ccc;
}

.history-content {
    float: right;
    width: 52%;
    background: #fff;
    padding: 48px 52px;
    box-shadow: 0 12px 30px #ddd;
}

.history-content .script-title {
    text-align: left;
    margin-bottom: 18px;
}

.history-content h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #222;
    font-family: Georgia, 'Times New Roman', serif;
}

.history-content p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 16px;
    color: #333;
}

.btn-history-detail {
    margin-top: 18px;
}

/* ROOMS */

.rooms-section {
    background-color: #111;
    background-image: url('../img/arkaalan.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0;
    min-height: 720px;
}

.room-slider-wrapper {
    position: relative;
    width: 100%;
}

.rooms-slider {
    position: relative;
    width: 100%;
    height: 590px;
    min-height: 590px;
    overflow: visible;
}

.room-card {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 590px;
    min-height: 590px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease;
}

.room-card.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.room-info {
    float: left;
    width: 43%;
    min-height: 500px;
    background: #fff;
    padding: 44px 48px;
    margin-top: 35px;
    margin-right: -70px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(255, 255, 255, .18);
}

.room-info h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 26px;
    min-height: 72px;
    max-height: 108px;
    overflow: hidden;
}

.room-info p {
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 24px;
    min-height: 72px;
    max-height: 90px;
    overflow: hidden;
}

.room-mini-features {
    list-style: none;
    margin-bottom: 22px;
    overflow: hidden;
}

.room-mini-features li {
    float: left;
    width: 50%;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.room-mini-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7d594a;
    font-weight: bold;
}

.room-buttons {
    margin-top: 5px;
}

.btn-dark {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 22px;
    transition: background .2s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-dark:hover {
    background: #333;
}

.btn-room-info {
    background: #7d594a;
}

.btn-room-info:hover {
    background: #5f4034;
}

.room-image {
    float: right;
    width: 60%;
    height: 540px;
    min-height: 540px;
    max-height: 540px;
    background: #222;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(255, 255, 255, .18);
}

.room-image img {
    width: 100%;
    height: 540px;
    min-height: 540px;
    max-height: 540px;
    display: block;
    object-fit: cover;
}

.room-arrow {
    position: absolute;
    top: 50%;
    margin-top: -45px;
    z-index: 200;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 90px;
    font-weight: 900;
    line-height: 90px;
    cursor: pointer;
    width: 90px;
    height: 90px;
    text-shadow: 0 0 10px #000, 0 0 25px #000;
}

.room-prev {
    left: 18px;
}

.room-next {
    right: 18px;
}

.room-dots {
    text-align: center;
    margin-top: 26px;
}

.room-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    margin: 0 5px;
}

.room-dots .active {
    background: #fff;
}

/* ROOM DETAIL */

.room-detail-section {
    background-color: #f7f4ee;
    background-image: url('../img/arkaalan.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px 0 90px;
}

.room-detail-page {
    overflow: hidden;
}

.room-detail-title-area {
    text-align: center;
    margin-bottom: 35px;
}

.room-detail-title-area h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #111;
    background: #fff;
    display: inline-block;
    padding: 22px 40px;
    box-shadow: 0 12px 30px #ddd;
}

.room-detail-gallery-full {
    width: 100%;
    margin-bottom: 35px;
}

.room-detail-main-image {
    width: 100%;
    background: #222;
    box-shadow: 0 18px 40px #ccc;
}

.room-detail-main-image img {
    width: 100%;
    height: 650px;
    display: block;
    object-fit: cover;
}

.room-detail-thumbs-row {
    margin-top: 18px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
}

.room-detail-thumbs-row button {
    display: inline-block;
    width: 120px;
    height: 82px;
    border: 3px solid #fff;
    background: #fff;
    cursor: pointer;
    margin-right: 10px;
    box-shadow: 0 6px 14px #ccc;
    vertical-align: top;
}

.room-detail-thumbs-row button:hover {
    border-color: #c65d2e;
}

.room-detail-thumbs-row img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.room-detail-text-box {
    background: #fff;
    padding: 48px 52px;
    box-shadow: 0 12px 30px #ddd;
}

.room-detail-text-box p {
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.room-detail-extra {
    overflow: hidden;
    margin: 34px 0;
}

.room-detail-features,
.room-detail-nearby {
    float: left;
    width: 48%;
    background: #f7f4ee;
    padding: 28px;
    min-height: 230px;
}

.room-detail-nearby {
    float: right;
}

.room-detail-features h2,
.room-detail-nearby h2 {
    font-size: 26px;
    margin-bottom: 18px;
}

.room-detail-features ul {
    list-style: none;
}

.room-detail-features li {
    font-size: 17px;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
}

.room-detail-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7d594a;
    font-weight: bold;
}

.room-detail-nearby p {
    font-size: 17px;
    line-height: 1.7;
}

/* SERVICES */

.services {
    padding: 72px 0 75px;
    background: #fff;
    text-align: center;
}

.services-grid {
    margin-top: 88px;
    overflow: hidden;
}

.service {
    float: left;
    width: 20%;
    padding: 0 15px;
    min-height: 230px;
    transition: transform .2s ease;
}

.service:hover {
    transform: translateY(-5px);
}

.service-icon {
    height: 100px;
    text-align: center;
}

.service-icon img {
    width: 82px;
    height: 82px;
    display: inline-block;
    object-fit: cover;
}

.service h3 {
    margin-top: 22px;
    font-size: 30px;
    font-weight: 400;
    color: #111;
}

.service p {
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.45;
    color: #111;
}

/* CONTACT */

.map-section {
    background: #fff;
}

.map-frame {
    height: 355px;
    width: 100%;
    border: 0;
    filter: grayscale(.2) opacity(.9);
}

.contact-boxes {
    overflow: hidden;
    padding: 34px 0 42px;
}

.contact-box {
    float: left;
    width: 31%;
    margin-right: 3.5%;
    background: #f7f7f7;
    min-height: 100px;
    overflow: hidden;
}

.contact-box:last-child {
    margin-right: 0;
}

.contact-icon {
    float: left;
    width: 100px;
    height: 100px;
    background: #7d594a;
    text-align: center;
}

.contact-icon img {
    width: 46px;
    height: 46px;
    display: inline-block;
    margin-top: 27px;
    object-fit: cover;
}

.contact-content {
    padding: 18px 24px;
    overflow: hidden;
}

.contact-content h3 {
    font-size: 30px;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-content p {
    color: #715545;
    font-size: 16px;
    line-height: 1.45;
}

.contact-whatsapp {
    display: inline-block;
    margin-top: 10px;
    background: #25d366;
    color: #fff;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
}

.contact-whatsapp:hover {
    background: #1da851;
}

/* FOOTER */

.footer {
    background: #222;
    color: #f1f1f1;
    padding: 55px 0 0;
}

.footer-grid {
    overflow: hidden;
    padding-bottom: 45px;
}

.footer-grid > div {
    float: left;
    width: 30%;
    margin-right: 5%;
}

.footer-grid > div:last-child {
    width: 30%;
    margin-right: 0;
}

.footer h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.footer p,
.footer li {
    font-size: 16px;
    line-height: 1.7;
}

.footer-social {
    margin-top: 28px;
}

.footer-social h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 400;
}

.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    margin-right: 8px;
}

.footer-social img {
    width: 24px;
    height: 24px;
    margin-top: 6px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    border-bottom: 1px solid #777;
}

.footer-nav a {
    display: block;
    padding: 11px 0 11px 24px;
    position: relative;
    font-size: 21px;
}

.footer-nav a:hover {
    color: #c65d2e;
}

.footer-nav a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #c65d2e;
    font-size: 26px;
    line-height: 1;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid #555;
    text-align: center;
    font-size: 14px;
    color: #ddd;
}

/* FIXED BUTTONS */

.whatsapp {
    position: fixed;
    right: 14px;
    bottom: 14px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #25d366;
    text-align: center;
    z-index: 10;
    box-shadow: 0 6px 18px #999;
}

.whatsapp img {
    width: 52px;
    height: 52px;
    display: inline-block;
    margin-top: 8px;
}

.back-top {
    position: fixed;
    right: 82px;
    bottom: 92px;
    width: 44px;
    height: 44px;
    border: 1px solid #222;
    color: #222;
    background: #fff;
    text-align: center;
    line-height: 44px;
    font-size: 23px;
    z-index: 9;
}

/* HISTORY DETAIL PAGE */

.history-detail-hero {
    background-color: #111;
    background-image: url('../img/history.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.history-detail-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .58);
}

.history-detail-hero .container {
    position: relative;
    z-index: 2;
}

.history-detail-hero h1 {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 700;
}

.history-detail-hero p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.45;
    letter-spacing: 1px;
}

.history-detail-section {
    background-color: #f7f4ee;
    background-image: url('../img/arkaalan.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 90px;
}

.history-detail-container {
    background: rgba(255, 255, 255, .88);
    padding: 55px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.history-detail-intro {
    max-width: 980px;
    margin: 0 auto 42px;
    text-align: center;
}

.history-detail-intro p {
    font-size: 22px;
    line-height: 1.75;
    color: #222;
}

.history-detail-gallery {
    overflow: hidden;
    margin-bottom: 48px;
}

.history-detail-main-photo {
    float: left;
    width: 52%;
    height: 420px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .25);
}

.history-detail-main-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.history-detail-small-photo {
    float: left;
    width: 22%;
    height: 195px;
    margin-left: 3%;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .20);
    background: #ddd;
}

.history-detail-small-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.history-detail-content {
    overflow: hidden;
}

.history-detail-card {
    float: left;
    width: 48%;
    min-height: 360px;
    background: #fff;
    padding: 34px 38px;
    margin-bottom: 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.history-detail-card:nth-child(even) {
    float: right;
}

.history-detail-card h2 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #7d594a;
    font-family: Georgia, 'Times New Roman', serif;
}

.history-detail-card p {
    font-size: 18px;
    line-height: 1.75;
    color: #222;
}

.history-detail-visit-box {
    margin-top: 20px;
    background: #111;
    color: #fff;
    padding: 42px 46px;
    text-align: center;
}

.history-detail-visit-box h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.history-detail-visit-box p {
    max-width: 900px;
    margin: 0 auto 28px;
    font-size: 19px;
    line-height: 1.7;
}

.history-detail-buttons .btn-dark {
    margin: 0 7px 10px;
}

/* PRESS PAGE */

.press-section {
    background-color: #f7f4ee;
    background-image: url('../img/arkaalan.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 90px;
}

.press-title-area {
    text-align: center;
    background: rgba(255, 255, 255, .92);
    padding: 45px 40px;
    margin-bottom: 48px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.press-title-area h1 {
    font-size: 54px;
    line-height: 1.15;
    color: #b9a279;
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    font-weight: 400;
    margin-bottom: 18px;
}

.press-title-area p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.7;
    color: #222;
}

.press-grid {
    overflow: hidden;
}

.press-card {
    float: left;
    width: 48%;
    background: #fff;
    margin-bottom: 38px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.press-card:nth-child(even) {
    float: right;
}

.press-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #111;
}

.press-video iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.press-card-content {
    padding: 28px 30px 34px;
}

.press-card-content h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #111;
}

.press-card-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

/* RTL */

body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .logo {
    float: none;
    margin-right: 0;
    margin-left: 22px;
}

body.rtl .social-menu {
    float: none;
    display: inline-block;
    margin-left: 14px;
    margin-right: 0;
}

body.rtl .social-menu a {
    margin-left: 0;
    margin-right: 7px;
}

body.rtl .language-menu {
    float: none;
    display: inline-block;
}

body.rtl .menu {
    float: none;
    text-align: center;
}

body.rtl .menu li {
    float: none;
    display: inline-block;
    margin: 0 11px;
}

body.rtl .submenu {
    left: auto;
    right: 0;
    text-align: right;
}

body.rtl .submenu a {
    transition: background .22s ease, color .22s ease, padding-right .22s ease;
}

body.rtl .submenu a:hover,
body.rtl .submenu a.active {
    padding-left: 20px;
    padding-right: 26px;
}

body.rtl .special-days-layout {
    direction: rtl;
}

body.rtl .special-days-content {
    text-align: right;
}

body.rtl .why-content-box .script-title {
    text-align: right;
}

body.rtl .why-benefits li {
    padding-left: 0;
    padding-right: 30px;
}

body.rtl .why-benefits li::before {
    left: auto;
    right: 0;
}

body.rtl .history-image {
    float: right;
}

body.rtl .history-content {
    float: left;
}

body.rtl .history-content .script-title {
    text-align: right;
}

body.rtl .room-info {
    float: right;
    margin-right: 0;
    margin-left: -70px;
}

body.rtl .room-image {
    float: left;
}

body.rtl .room-mini-features li {
    float: right;
    padding-left: 0;
    padding-right: 18px;
}

body.rtl .room-mini-features li::before {
    left: auto;
    right: 0;
}

body.rtl .btn-dark {
    margin-right: 0;
    margin-left: 10px;
}

body.rtl .room-detail-title-area {
    text-align: center;
}

body.rtl .room-detail-features {
    float: right;
}

body.rtl .room-detail-nearby {
    float: left;
}

body.rtl .room-detail-features li {
    padding-left: 0;
    padding-right: 24px;
}

body.rtl .room-detail-features li::before {
    left: auto;
    right: 0;
}

body.rtl .room-detail-thumbs-row button {
    margin-right: 0;
    margin-left: 10px;
}

body.rtl .contact-box {
    float: right;
    margin-right: 0;
    margin-left: 3.5%;
}

body.rtl .contact-box:last-child {
    margin-left: 0;
}

body.rtl .contact-icon {
    float: right;
}

body.rtl .footer-grid > div {
    float: right;
    margin-right: 0;
    margin-left: 5%;
}

body.rtl .footer-grid > div:last-child {
    margin-left: 0;
}

body.rtl .footer-nav a {
    padding: 11px 24px 11px 0;
}

body.rtl .footer-nav a::before {
    left: auto;
    right: 0;
}

body.rtl .history-detail-main-photo {
    float: right;
}

body.rtl .history-detail-small-photo {
    float: right;
    margin-left: 0;
    margin-right: 3%;
}

body.rtl .history-detail-card {
    float: right;
}

body.rtl .history-detail-card:nth-child(even) {
    float: left;
}

body.rtl .press-card {
    float: right;
}

body.rtl .press-card:nth-child(even) {
    float: left;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: 600px;
        max-height: none;
    }

    .logo img {
        width: 145px;
    }

    .hero-content {
        height: auto;
        min-height: 360px;
        max-height: none;
        padding: 100px 0 80px;
    }

    .hero-content p {
        letter-spacing: 5px;
        font-size: 30px;
    }

    .special-days-layout {
        gap: 36px;
    }

    .special-days-video {
        width: 38%;
        max-width: 320px;
    }

    .special-days-content {
        width: 56%;
        padding: 42px 38px;
    }

    .special-days-content h2 {
        font-size: 36px;
    }

    .special-days-content p {
        font-size: 19px;
    }

    .why-layout {
        gap: 34px;
    }

    .why-content-box {
        width: 52%;
        padding: 42px 34px;
    }

    .why-image-box {
        width: 38%;
        max-width: 370px;
        height: 658px;
    }

    .why-content-box .script-title {
        font-size: 68px;
    }

    .history-image,
    .history-content {
        float: none;
        width: 100%;
    }

    .history-content {
        margin-top: 30px;
    }

    .rooms-section {
        min-height: auto;
    }

    .rooms-slider {
        height: auto;
        min-height: auto;
    }

    .room-card {
        position: relative;
        display: none;
        height: auto;
        min-height: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .room-card.active {
        display: block;
    }

    .room-info,
    body.rtl .room-info {
        float: none;
        width: 100%;
        height: auto;
        min-height: 360px;
        max-height: none;
        margin-right: 0;
        margin-left: 0;
        margin-top: 0;
    }

    .room-image,
    body.rtl .room-image {
        float: none;
        width: 100%;
    }

    .room-info h2,
    .room-info p {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .room-detail-features,
    .room-detail-nearby,
    body.rtl .room-detail-features,
    body.rtl .room-detail-nearby {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .history-detail-container {
        padding: 38px;
    }

    .history-detail-main-photo,
    .history-detail-small-photo,
    body.rtl .history-detail-main-photo,
    body.rtl .history-detail-small-photo {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        height: auto;
        margin-bottom: 22px;
    }

    .history-detail-main-photo img,
    .history-detail-small-photo img {
        height: auto;
    }

    .history-detail-card,
    .history-detail-card:nth-child(even),
    body.rtl .history-detail-card,
    body.rtl .history-detail-card:nth-child(even) {
        float: none;
        width: 100%;
        min-height: auto;
    }

    .press-card,
    .press-card:nth-child(even),
    body.rtl .press-card,
    body.rtl .press-card:nth-child(even) {
        float: none;
        width: 100%;
    }

    .service {
        width: 50%;
        margin-bottom: 35px;
    }

    .contact-box,
    body.rtl .contact-box {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .footer-grid > div,
    .footer-grid > div:last-child,
    body.rtl .footer-grid > div,
    body.rtl .footer-grid > div:last-child {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 35px;
    }

    .footer h3 {
        margin-bottom: 25px;
    }
}

@media (max-width: 720px) {
    .navbar {
        text-align: center;
    }

    .logo,
    body.rtl .logo {
        float: none;
        display: inline-block;
        margin: 0;
    }

    .logo img {
        width: 140px;
    }

    .social-menu,
    body.rtl .social-menu {
        float: none;
        display: block;
        margin: 16px 0 0 0;
        text-align: center;
    }

    .social-menu a,
    body.rtl .social-menu a {
        margin: 0 4px;
    }

    .language-menu,
    body.rtl .language-menu {
        float: none;
        display: block;
        clear: both;
        margin: 18px 0 0 0;
        text-align: center;
    }

    .language-menu select {
        min-width: 150px;
        text-align: center;
    }

    .menu,
    body.rtl .menu {
        float: none;
        margin-top: 25px;
        text-align: center;
        font-size: 18px;
    }

    .menu li,
    body.rtl .menu li {
        float: none;
        display: inline-block;
        margin: 8px 10px;
    }

    .submenu {
        position: static;
        min-width: 100%;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .has-submenu:hover .submenu {
        display: block;
    }

    .submenu li {
        opacity: 1;
        transform: none;
    }

    .submenu a {
        font-size: 17px;
    }

    .submenu a:hover,
    .submenu a.active {
        padding-left: 20px;
    }

    body.rtl .submenu a:hover,
    body.rtl .submenu a.active {
        padding-right: 20px;
    }

    .hero {
        height: auto;
        min-height: 560px;
        max-height: none;
    }

    .hero-content {
        height: auto;
        min-height: 330px;
        max-height: none;
        padding: 85px 0 70px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .hero-buttons .btn {
        display: block;
        width: 90%;
        max-width: 280px;
        margin: 0 auto 12px;
    }

    .btn {
        font-size: 22px;
        padding: 18px 34px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 36px;
        line-height: 36px;
        margin-top: -21px;
    }

    .hero-prev {
        left: 8px;
    }

    .hero-next {
        right: 8px;
    }

    .script-title {
        font-size: 44px;
    }

    .special-days-section {
        padding: 55px 0;
    }

    .special-days-layout {
        display: block;
    }

    .special-days-video {
        width: 100%;
        max-width: 360px;
        margin: 0 auto 30px;
    }

    .special-days-content {
        width: 100%;
        padding: 34px 26px;
        text-align: center;
    }

    .special-days-content h2 {
        font-size: 30px;
    }

    .special-days-content p {
        font-size: 17px;
        line-height: 1.7;
    }

    body.rtl .special-days-content {
        text-align: center;
    }

    .why {
        padding: 55px 0;
    }

    .why-layout {
        display: block;
    }

    .why-content-box {
        width: 100%;
        padding: 34px 26px;
    }

    .why-content-box .script-title {
        font-size: 50px;
    }

    .why-text {
        font-size: 16px;
        line-height: 1.75;
    }

    .why-benefits li {
        font-size: 16px;
        line-height: 1.75;
    }

    .why-image-box {
        width: 100%;
        max-width: 430px;
        height: 765px;
        margin: 30px auto 0;
    }

    .why-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .history-section {
        padding: 55px 0;
    }

    .history-content {
        padding: 34px 26px;
    }

    .history-image img {
        height: 300px;
    }

    .room-image,
    .room-image img {
        height: 310px;
        min-height: 310px;
        max-height: 310px;
    }

    .room-info {
        padding: 45px 28px;
        min-height: 320px;
    }

    .room-info h2 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .room-info p {
        font-size: 22px;
        margin-bottom: 26px;
    }

    .room-mini-features li,
    body.rtl .room-mini-features li {
        float: none;
        width: 100%;
    }

    .btn-dark {
        font-size: 20px;
        padding: 14px 20px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .room-arrow {
        font-size: 60px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin-top: -30px;
    }

    .room-prev {
        left: 5px;
    }

    .room-next {
        right: 5px;
    }

    .room-detail-section {
        padding: 45px 0 60px;
    }

    .room-detail-title-area h1 {
        font-size: 28px;
        padding: 18px 24px;
    }

    .room-detail-main-image img {
        height: 330px;
    }

    .room-detail-thumbs-row button {
        width: 95px;
        height: 68px;
    }

    .room-detail-text-box {
        padding: 34px 26px;
    }

    .room-detail-text-box p {
        font-size: 18px;
    }

    .room-detail-features,
    .room-detail-nearby {
        padding: 22px;
    }

    .history-detail-hero {
        padding: 80px 0;
    }

    .history-detail-hero h1 {
        font-size: 34px;
    }

    .history-detail-hero p {
        font-size: 20px;
    }

    .history-detail-section {
        padding: 45px 0 60px;
    }

    .history-detail-container {
        padding: 26px;
    }

    .history-detail-intro p {
        font-size: 18px;
    }

    .history-detail-card {
        padding: 28px 24px;
    }

    .history-detail-card h2 {
        font-size: 25px;
    }

    .history-detail-card p {
        font-size: 17px;
    }

    .history-detail-visit-box {
        padding: 32px 24px;
    }

    .history-detail-buttons .btn-dark {
        display: block;
        width: 100%;
        margin: 0 0 12px;
    }

    .press-section {
        padding: 50px 0 65px;
    }

    .press-title-area {
        padding: 34px 24px;
    }

    .press-title-area h1 {
        font-size: 42px;
    }

    .press-title-area p {
        font-size: 18px;
    }

    .press-card-content {
        padding: 24px 22px 28px;
    }

    .press-card-content h2 {
        font-size: 22px;
    }

    .press-card-content p {
        font-size: 16px;
    }

    .whatsapp {
        width: 60px;
        height: 60px;
    }

    .whatsapp img {
        width: 46px;
        height: 46px;
        margin-top: 7px;
    }

    .back-top {
        right: 75px;
        bottom: 84px;
    }

    .service {
        float: none;
        width: 100%;
        margin-bottom: 40px;
    }

    .contact-icon {
        width: 90px;
        height: 100px;
    }

    .contact-content h3 {
        font-size: 26px;
    }

    .footer-nav a {
        font-size: 20px;
    }
}