/* TEMEL AYARLAR */
html {
    scroll-behavior: smooth;
    cursor: none;
}

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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.8;
    overflow-x: hidden;
}

/* CUSTOM CURSOR SİSTEMİ */
#custom-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out;
}

#cursor-follower {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.25s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

/* PROGRESS BAR */
#progress-container {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 4000;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: width 0.1s ease-out;
}

/* ANİMASYONLAR */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* NAVİGASYON */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(30px);
    z-index: 3000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideDown 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-logo img {
    max-height: 45px;
    filter: invert(1) brightness(1.5);
    transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item>a {
    color: #fff;
    text-decoration: none;
    padding: 0 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.5;
    transition: 0.3s;
}

.nav-item:hover>a {
    opacity: 1;
}

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

/* DİL SEÇİCİ */
.lang-selector {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    transition: 0.4s;
    z-index: 5000;
}

.current-lang {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-lang::after {
    content: '▾';
    font-size: 12px;
    opacity: 0.5;
}

.lang-dropdown {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.5;
    transition: 0.3s;
}

.lang-dropdown a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 180px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 5001;
}

.mega-menu::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu a {
    padding: 10px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.5;
    transition: 0.3s;
    display: block;
    text-align: center;
}

.mega-menu a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

/* REZERVASYON BUTONU */
.nav-pill {
    background: #fff;
    color: #000;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 950;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    background: #f0f0f0;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;

    z-index: -1;
    animation: kenBurns 20s infinite alternate ease-in-out;
    will-change: transform;
}

.hero h1 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -5px;
    line-height: 0.95;
    animation: fadeInUp 1.5s both 0.6s;
    position: relative;
    z-index: 1;
}

.title-pill,
.hero-sub-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 800;
    width: fit-content;
    margin: 0 auto 25px;
    animation: scaleIn 1.5s both 0.3s;
    position: relative;
    z-index: 1;
}

.hero-sub-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
    animation: fadeInUp 1.5s both 0.9s;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-sub-pill {
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

/* DIGITAL CONCIERGE WIDGET */
#concierge-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 8000;
}

#concierge-trigger {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#concierge-trigger svg {
    width: 24px;
    fill: #000;
    transition: 0.3s;
}

#concierge-trigger:hover {
    transform: scale(1.1) rotate(15deg);
}

#concierge-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#concierge-widget.active #concierge-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.concierge-header {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 900;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 15px;
}

.concierge-msg {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
}

.concierge-weather {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.weather-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.temp-val {
    font-size: 24px;
    font-weight: 900;
}

.weather-desc {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.sea-temp {
    font-size: 11px;
    font-weight: 700;
    color: #00d2ff;
    display: flex;
    align-items: center;
    gap: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    margin-top: 5px;
}

/* SUNSET COUNTER */
.sunset-timer {
    margin-top: 15px;
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.1), transparent);
    padding: 12px;
    border-radius: 15px;
    border-left: 2px solid #ff8c00;
}

.timer-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-bottom: 5px;
}

.timer-val {
    font-size: 14px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

/* SECTIONS & AWARDS */
section {
    padding: 150px 10%;
    position: relative;
    z-index: 5;
    background: #0a0a0a;
}

h2 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 70px;
    text-align: center;
}

.vision-text {
    max-width: 1000px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    color: #aaa;
    line-height: 2.2;
}

.vision-img {
    width: 100%;
    height: 75vh;
    background: url('../images/vision.jpg') center/cover no-repeat;
    border-radius: 40px;
    margin-bottom: 100px;
    border: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    animation: playPulse 2.5s infinite;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.4);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    margin-left: 10px;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.play-button:hover .play-icon {
    border-left-color: #000;
}

@keyframes playPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 30px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}


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

.award-card {
    background: #111;
    border: 1px solid #1a1a1a;
    padding: 70px 30px;
    text-align: center;
    border-radius: 35px;
    transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.award-card:hover {
    transform: translateY(-15px);
    border-color: #fff;
}

.award-score {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 1;
}

.score-base {
    font-size: 1.1rem;
    opacity: 0.3;
    letter-spacing: 4px;
    margin: 10px 0;
    font-weight: 800;
}

.score-label {
    font-size: 10px;
    letter-spacing: 5px;
    font-weight: 950;
    text-transform: uppercase;
}

/* ROOMS */
.room-detail {
    display: flex;
    gap: 100px;
    align-items: center;
    margin-bottom: 250px;
    scroll-margin-top: 150px;
}

.room-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.room-info {
    flex: 1;
}

.room-info h3 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.room-info p {
    color: #888;
    font-size: 1.25rem;
    line-height: 2.1;
    margin-bottom: 30px;
    text-align: justify;
}

.slider-container {
    flex: 1.5;
    height: 700px;
    position: relative;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    border-radius: 45px;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 45px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 25px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: all 0.4s;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    transform: scale(1.15);
}

/* EXPERIENCES */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.exp-card {
    height: 500px;
    position: relative;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    background: #000;
    border-radius: 35px;
}

.exp-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.exp-card:hover .exp-img {
    opacity: 0.85;
    transform: scale(1.08);
}

.exp-content {
    position: absolute;
    bottom: 0;
    padding: 40px;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.exp-content h4 {
    font-size: 1.8rem;
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.6;
    transition: 0.5s;
}

.exp-content p {
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
    color: #fff;
    line-height: 1.6;
}

.exp-card:hover .exp-content h4 {
    opacity: 1;
}

.exp-card:hover .exp-content p {
    opacity: 1;
    transform: translateY(0);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 100px;
}

.contact-box {
    background: #111;
    border: 1px solid #1a1a1a;
    padding: 80px 40px;
    text-align: center;
    border-radius: 35px;
    transition: all 0.5s;
    text-decoration: none;
    color: #fff;
}

.box-phone:hover {
    border-color: #fff;
    transform: translateY(-10px);
}

.box-whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
    transform: translateY(-10px);
}

.box-insta:hover {
    border-color: #E1306C;
    color: #E1306C;
    transform: translateY(-10px);
}

footer {
    padding: 100px 10%;
    text-align: center;
    border-top: 1px solid #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    max-height: 50px;
    filter: invert(1) brightness(1.2);
    opacity: 0.6;
    transition: 0.3s;
}

.footer-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.footer-text {
    opacity: 0.2;
    font-size: 12px;
    letter-spacing: 10px;
}

.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    html {
        cursor: auto;
    }

    #custom-cursor,
    #cursor-follower {
        display: none;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    .room-detail,
    .room-detail:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 120px;
        padding: 0 5%;
    }

    #concierge-widget {
        bottom: 20px;
        right: 20px;
    }
}

/* 1. BENTO GALERİ DİZİLİMİ */
.gallery-container {
    padding: 100px 5%;
    background: #0a0a0a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Bento Şekilleri */
.gallery-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-item.tall {
    grid-row: span 2;
}

/* 2. LIGHTBOX (BÜYÜTÜNCE ÇIKAN EKRAN) */
#lightbox {
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    /* Başlangıç ayarı: Şeffaf ve 40px aşağıda */
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Aktif olunca: Görünür ve yerine oturur */
#lightbox.active img {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}

/* PILL BUTTON (HAP BUTON) TASARIMI */
.pill-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    /* Tam hap şekli */
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pill-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    /* Hafif yukarı zıplama */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: #fff;
}

/* Mobilde butonlar birbirine girmesin diye */
@media (max-width: 768px) {
    .vision-docs {
        flex-direction: column;
        align-items: center;
    }

    .pill-button {
        width: 100%;
        justify-content: center;
    }
}

/* MAP SECTION DESIGN */
.location-section {
    padding: 100px 50px;
    background: #0a0a0a;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-box {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(1) invert(1) contrast(1.2);
    /* Haritayı siyah/beyaz ve karanlık moda sokar */
    transition: 0.5s;
}

.map-box:hover {
    filter: grayscale(0) invert(0);
}

/* Üzerine gelince renklenir */

.location-info .section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.address-details {
    margin: 30px 0;
    color: #aaa;
}

.map-btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.4s;
}

.map-btn:hover {
    background: #fff;
    color: #000;
}

/* Mobil Uyum */
@media (max-width: 968px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-section {
        padding: 50px 20px;
    }
}

/* WOODY ODA DETAY STİLLERİ */
.room-detail-section {
    padding: 100px 5%;
    background: #070707;
    border-top: 1px solid #1a1a1a;
}

.room-flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.room-gallery {
    flex: 1;
    min-width: 350px;
}

.main-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.thumb-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumb-group img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
    object-fit: cover;
}

.thumb-group img:hover {
    opacity: 1;
}

.room-info-box {
    flex: 1;
    min-width: 350px;
}

.room-category {
    color: #888;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.room-info-box h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 15px 0;
    font-weight: 300;
    color: #fff;
}

/* PILL TASARIMI */
.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
}

.pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    color: #ddd;
    backdrop-filter: blur(5px);
}

.room-description {
    color: #aaa;
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 600px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 30px 0;
    border-top: 1px solid #1a1a1a;
    margin-bottom: 30px;
}

.amenity-item {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
}

.amenity-item::before {
    content: "○";
    color: #fff;
    margin-right: 10px;
    font-size: 10px;
}

.book-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    transition: 0.4s;
}

.book-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

/* WOODY ÖZEL FONT FİX */
#woody-detail h2 {
    font-family: 'SF Pro Display', sans-serif !important;
    font-weight: 700 !important;
    /* Tam Bold olması için */
    letter-spacing: -2px;
}

#woody-detail .pill {
    font-family: 'SF Pro Display', sans-serif !important;
    font-weight: 600;
}

#woody-detail p,
#woody-detail .amenity-item {
    font-family: 'SF Pro Display', sans-serif !important;
}

/* LIGHTBOX OKLARI */
.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    font-weight: 100;
    cursor: pointer;
    padding: 30px;
    z-index: 10001;
    transition: 0.3s;
    font-family: serif;
    opacity: 0.5;
    user-select: none;
}

.lb-arrow:hover {
    opacity: 1;
    scale: 1.2;
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

#lightbox img {
    transition: opacity 0.3s ease;
}

/* 3+3 Tam Kare Düzen */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Yan yana */
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    aspect-ratio: 1 / 1;
    /* BURASI SİHİRLİ: Tam kare yapar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* İçindeki yazıları ortalar */
    align-items: center;
    text-align: center;
    padding: 30px !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* Yumuşacık Köşeler */
    border-radius: 40px;

    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Üstüne Gelince Parlama ve Yükselme Efekti */
.blog-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    /* Hafif beyaz parlama */
}

/* Kartın İçindeki Yazılar İçin Minik Ayar */
.blog-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.7;
}

/* Mobilde ve Tablette Bozulmasın */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tablette 2'li */
}

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

    /* Mobilde tekli */
    .blog-card {
        aspect-ratio: auto;
        min-height: 300px;
    }

    /* Mobilde kareyi esnetiyoruz ki yazı sığsın */
}

@media (max-width: 768px) {

    /* 1. Izgarayı Tek Sütun Yap ve Boşlukları Ayarla */
    .experience-grid {
        /* Eğer ismi buysa */
        display: flex !important;
        flex-direction: column !important;
        padding: 20px !important;
        gap: 20px !important;
    }

    /* 2. Kartları Küçült ve O Kopmayı Bitir */
    .exp-card {
        width: 100% !important;
        height: 280px !important;
        /* İşte burası kartı kibarlaştırıyor */
        margin: 0 auto !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        /* Sağdaki o wheel/scrollbar taşmasını keser */
        position: relative !important;
    }

    /* 3. Kartın İçindeki Resmi Tam Oturt */
    .exp-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* 4. Yazıları Kartın Üstünde Daha Şık Göster */
    .exp-content {
        padding: 15px !important;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)) !important;
    }
}

/* --- MOBİL GALERİ DÜZENLEME --- */
@media (max-width: 768px) {

    /* Grid yapısını iptal edip tekli akışa geçiyoruz */
    .gallery-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        /* Fotoğraflar arası boşluk */
        padding: 15px !important;
    }

    /* Her bir fotoğraf kutusunun masaüstü ayarlarını sıfırlıyoruz */
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        width: 100% !important;
        height: auto !important;
        /* Yüksekliği içeriğe göre ayarla */
        min-height: 250px;
        /* Çok ufak kalmasınlar */
    }

    /* Fotoğrafların oranını koruyoruz */
    .gallery-item img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px;
        /* Mobilde hafif yuvarlak köşe şık durur */
    }
}

/* --- MOBİL HAMBURGER SİSTEMİ --- */
@media (max-width: 768px) {

    /* Mevcut nav-links'i mobilde gizle */
    .nav-links {
        display: none !important;
    }

    /* Hamburger İkonu Tasarımı */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 10001;
        /* Her şeyin üstünde dursun */
        position: relative;
    }

    .hamburger span {
        width: 30px;
        height: 2px;
        background-color: #fff;
        transition: 0.4s;
    }

    /* Menü açıldığında ikonun X olması için */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobil Menü Ekranı */
    .mobile-overlay {
        position: fixed;
        top: 0;
        right: -100%;
        /* Başta ekranın dışında */
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        /* Şık, koyu, hafif şeffaf */
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
    }

    .mobile-overlay.active {
        right: 0;
    }

    .mobile-overlay a {
        color: white;
        text-decoration: none;
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
}

/* Bilgisayarda hamburgeri gizle */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .mobile-overlay {
        display: none;
    }
}

/* Mobil Menü Dil Seçenekleri Stili */
.mobile-lang {
    margin-top: 20px;
    /* Linklerden biraz ayırıyoruz */
    display: flex;
    gap: 15px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Hafif bir ayraç çizgisi */
    padding-top: 20px;
}

.mobile-lang {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    z-index: 10002;
}

.mobile-lang a {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-decoration: none;
    opacity: 0.5;
}

.mobile-lang a.active {
    opacity: 1;
}

.faq-section {
    padding: 100px 20px;
    background-color: #0a0a0a;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.faq-question {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.3s;
}

.faq-question:hover {
    color: #ccc;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 25px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-question i {
    font-size: 0.9rem;
    transition: 0.4s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    /* Plus ikonunu çarpıya çevirir */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.loft-blog-card {
    background: #111;
    /* Kartın hafif belirginleşmesi için */
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Üst üste dizilim */
    height: 100%;
    /* Kartların boyunu eşitler */
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi sündürmeden alanı doldurur */
    transition: transform 0.5s ease;
}

.blog-card-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* İçeriğin kartın kalanını doldurmasını sağlar */
}

.blog-card-info h3 {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date {
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.category-pill {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.blog-card-info p {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.read-more {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-top: auto;
    /* Yazı kısa olsa bile butonu hep en alta iter */
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Efektleri */
.loft-blog-card:hover {
    transform: translateY(-10px);
    background: #161616;
}

.loft-blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}