/****************************************************************/
/* 1. TEMEL VE GENEL STİLLER (MAGNA AURUM CAVE HOTEL)           */
/****************************************************************/
:root {
    --primary-color: #ffaa00; /* Logodaki parlak ateş/altın rengi */
    --secondary-color: #cc8800; /* Daha koyu alev/altın tonu */
    --dark-color: #1a0f0a; /* Logodaki kayalıklara uygun koyu mağara tonu */
    --light-color: #fcf9f2; /* Sıcak krem/beyaz */
    --text-color: #2d2d2d;
    --font-title: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --header-height: 100px;
    --transition-speed: 0.35s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #fdfbf7;
    line-height: 1.6;
    overflow-x: hidden !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

main {
    flex-grow: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 100px 0;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: #1a0f0a; /* Koyu zemin üzerine ateş rengi, okunaklı siyah yazı */
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 700;
    border: 1px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 170, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 136, 0, 0.4);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.section-title-left {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-align: left;
}

/****************************************************************/
/* 2. HEADER VE MOBİL MENÜ                                      */
/****************************************************************/
.main-header {
    background: linear-gradient(to bottom, rgba(26, 15, 10, 0.9), transparent);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 170, 0, 0.15);
    transition: all var(--transition-speed) ease;
}

.header-hidden {
    transform: translateY(-100%);
}

.main-header.header-scrolled {
    background: var(--dark-color);
    height: 80px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.content-page .main-header {
    background: var(--dark-color);
}

body.menu-open .main-header {
    z-index: 1002;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.main-nav {
    flex: 1 1 0;
}

.nav-left {
    display: flex;
    justify-content: flex-start;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
}

.header-right {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin: 0 25px;
}

.logo {
    flex-shrink: 0;
    padding: 0 40px;
}

.logo img {
    height: 110px; /* Logoyu biraz daha vurguladık */
    transition: height var(--transition-speed) ease;
    filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.3));
}

.main-header.header-scrolled .logo img {
    height: 80px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    transition: color var(--transition-speed);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
    box-shadow: 0 0 5px var(--primary-color);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.btn-reservation {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    margin-right: 20px;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    font-size: 0.75rem;
    background: rgba(26, 15, 10, 0.5);
}

.btn-reservation:hover {
    background-color: var(--primary-color);
    color: #1a0f0a;
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.4);
}

.lang-switcher a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
    padding: 0 5px;
    transition: color var(--transition-speed);
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: var(--primary-color);
}

.lang-switcher span {
    color: rgba(255, 255, 255, 0.3);
}

.hamburger-menu {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    margin-left: 20px;
    z-index: 1003;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) { top: 0px; }
.hamburger-menu span:nth-child(2) { top: 11px; }
.hamburger-menu span:nth-child(3) { top: 22px; }

body.menu-open .hamburger-menu span:nth-child(1) { top: 11px; transform: rotate(135deg); }
body.menu-open .hamburger-menu span:nth-child(2) { opacity: 0; left: -30px; }
body.menu-open .hamburger-menu span:nth-child(3) { top: 11px; transform: rotate(-135deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

body.menu-open .mobile-menu {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-menu ul li {
    margin-bottom: 30px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    font-family: var(--font-title);
}

.mobile-menu ul li a:hover {
    color: var(--primary-color);
}

.mobile-reservation-cta {
    margin-top: 30px;
    padding-bottom: 30px;
}

.mobile-lang-switcher {
    margin-top: 10px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 170, 0, 0.2);
}

.mobile-lang-switcher a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    padding: 0 10px;
    font-size: 1.2rem;
}

.mobile-lang-switcher a.active,
.mobile-lang-switcher a:hover {
    color: var(--primary-color);
}

/****************************************************************/
/* 3. ANASAYFA STİLLERİ                                         */
/****************************************************************/
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-color);
}
.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}
.hero-slider .slide.active { opacity: 1; z-index: 2; }
.hero-slider .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 10, 0.6); /* Daha koyu ve sıcak bir karanlık */
}
.slide-content {
    position: absolute;
    width: 90%;
    max-width: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: var(--light-color);
    text-align: center;
    padding: 20px;
}
.slide.active .slide-content { animation: fadeInContent 1.5s ease-out 0.5s forwards; opacity: 0; }
@keyframes fadeInContent {
    from { opacity: 0; transform: translate(-50%, -45%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}
.slide-content h1 {
    font-family: var(--font-title);
    font-size: 3.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
    color: #fff;
}
.slide-content p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

/* AKTİVİTELER DÜZENİ - Geliştirilmiş ve Hataları Giderilmiş */
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.activity-card-link { display: block; text-decoration: none; }
.activity-card {
    height: 380px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 170, 0, 0.1);
}
.activity-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(255, 170, 0, 0.2); 
    border-color: var(--primary-color);
}
.activity-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 20px 20px;
    background: linear-gradient(to top, rgba(26, 15, 10, 0.95), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}
.activity-card:hover .activity-card-overlay { opacity: 1; transform: translateY(0); }
.activity-card-overlay h3 { 
    font-family: var(--font-title); 
    color: var(--primary-color); 
    font-size: 1.5rem; 
    margin: 0; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

.room-gallery { background-color: #fdfbf7; padding-bottom: 80px; }
.about-summary { background-color: #fff; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.about-image { width: 100%; height: 500px; background-size: cover; background-position: center; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.btn-secondary { 
    display: inline-block; 
    padding: 12px 28px; 
    background-color: transparent; 
    color: var(--dark-color); 
    text-decoration: none; 
    border: 2px solid var(--primary-color); 
    font-family: var(--font-title);
    font-weight: bold;
    transition: all var(--transition-speed) ease; 
}
.btn-secondary:hover { 
    background-color: var(--primary-color); 
    color: #1a0f0a; 
    box-shadow: 0 5px 15px rgba(255, 170, 0, 0.2);
}

.google-reviews { background-color: #fff; }
.reviews-slider { padding-bottom: 50px; }
.review-card { 
    position: relative; 
    background: #fff; 
    border: 1px solid rgba(255, 170, 0, 0.15); 
    padding: 30px; 
    padding-top: 40px; 
    border-radius: 8px; 
    text-align: center; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); 
    transition: transform 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}
.review-card::before { 
    content: '\f10d'; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    font-size: 2.5rem; 
    color: var(--primary-color); 
    opacity: 0.15; 
    position: absolute; 
    top: 20px; 
    left: 25px; 
}
.review-stars { color: var(--primary-color); font-size: 1.2rem; margin-bottom: 20px; }
.review-text { font-style: italic; color: #555; line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.review-author { font-family: var(--font-title); font-weight: bold; color: var(--dark-color); }
.reviews-slider .swiper-button-next,
.reviews-slider .swiper-button-prev { color: var(--primary-color); }
.reviews-slider .swiper-pagination-bullet-active { background-color: var(--primary-color); }

/****************************************************************/
/* 4. DİĞER SAYFALAR, GALERİ VE VİDEO                           */
/****************************************************************/
.page-header { background-position: center; background-size: cover; padding: 120px 0 80px; text-align: center; position: relative; padding-top: calc(var(--header-height) + 60px); }
.page-header::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26, 15, 10, 0.7); z-index: 1; }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-family: var(--font-title); font-size: 3.5rem; color: #fff; text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8); }
.page-header.video-header { overflow: hidden; }
.page-header>video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 0; object-fit: cover; }

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.room-card { background-color: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); border: 1px solid rgba(255, 170, 0, 0.1); transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease; }
.room-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(255, 170, 0, 0.15); border-color: var(--primary-color); }
.room-card-image { position: relative; overflow: hidden; height: 260px; }
.room-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-speed) ease; }
.room-card:hover .room-card-image img { transform: scale(1.08); }
.room-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26, 15, 10, 0.7); display: flex; justify-content: center; align-items: center; color: var(--primary-color); font-family: var(--font-title); font-size: 1.2rem; font-weight: bold; opacity: 0; transition: opacity var(--transition-speed) ease; }
.room-card:hover .room-card-overlay { opacity: 1; }
.room-card-overlay i { margin-left: 8px; transition: transform 0.3s ease; }
.room-card:hover .room-card-overlay i { transform: translateX(5px); }
.room-card-content { padding: 25px; border-top: 3px solid var(--primary-color); text-align: center; min-height: 90px; display: flex; justify-content: center; align-items: center; background: #fff;}
.room-card-title { font-family: var(--font-title); font-size: 1.5rem; color: var(--dark-color); margin: 0; }

.room-detail-header { text-align: center; padding-top: calc(var(--header-height) + 60px); padding-bottom: 40px; margin-bottom: 40px; }
.room-detail-title { font-family: var(--font-title); font-size: 3.5rem; color: var(--secondary-color); margin-bottom: 15px; }
.room-detail-subtitle { font-size: 1.1rem; color: #555; max-width: 700px; margin: 0 auto; line-height: 1.8; }

/* AKTİVİTE BLOKLARI (RESİM-YAZI EŞİTSİZLİĞİNİ GİDEREN KISIM) */
.activity-block { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 0; 
    margin-bottom: 80px; 
    background-color: #fff; 
    border-radius: 8px; 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); 
    overflow: hidden; 
    opacity: 0; 
    transform: translateY(40px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
    align-items: stretch; /* İçerik ve resmi eşitler */
}
.activity-block.is-visible { opacity: 1; transform: translateY(0); }
.activity-block:nth-child(even) .activity-image { order: 2; }

.activity-image {
    position: relative;
    overflow: hidden;
    min-height: 400px; /* Minimum yükseklik veriyoruz ki ezilmesin */
}
.activity-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    position: absolute;
    top: 0;
    left: 0;
}
.activity-content { 
    padding: 60px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; /* Yazı kısa kalsa bile tam dikey ortalar */
    background: #fff;
}
.activity-title { 
    font-family: var(--font-title); 
    font-size: 2.2rem; 
    color: var(--secondary-color); 
    margin-bottom: 20px; 
}
.activity-description { color: #555; line-height: 1.8; margin-bottom: 30px; }
.activity-action { margin-top: auto; }
.activity-action .btn-primary i { margin-right: 8px; font-size: 1.2rem; }

.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); border: 2px solid rgba(255, 170, 0, 0.2); }
.about-story-content p { color: #555; line-height: 1.8; margin-bottom: 1.5em; }

.why-us-section { background-color: #fdfbf7; border-top: 1px solid #eee; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 60px auto; }
.section-header .section-subtitle { font-size: 1.1rem; color: #666; margin-top: -30px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-item { background-color: #fff; padding: 40px; border-radius: 8px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); border-bottom: 4px solid transparent; transition: all var(--transition-speed) ease; }
.value-item:hover { transform: translateY(-10px); border-color: var(--primary-color); box-shadow: 0 15px 40px rgba(255, 170, 0, 0.15); }
.value-icon { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 20px; display: inline-block; transition: transform 0.3s ease; filter: drop-shadow(0 2px 5px rgba(255,170,0,0.3)); }
.value-item:hover .value-icon { transform: scale(1.15); }
.value-title { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 15px; color: var(--dark-color); }
.value-item p { color: #666; font-size: 0.95rem; line-height: 1.7; }

.cta-section { background-size: cover; background-position: center; background-attachment: fixed; position: relative; }
.cta-overlay { background-color: rgba(26, 15, 10, 0.85); padding: 100px 0; border-top: 3px solid var(--primary-color); border-bottom: 3px solid var(--primary-color); }
.cta-section .container { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; }
.cta-title { font-family: var(--font-title); font-size: 2.8rem; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9); margin-bottom: 15px; color: var(--primary-color); }
.cta-text { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; max-width: 600px; }
.cta-section .btn-primary { transform: scale(1.1); transition: transform 0.3s ease; }
.cta-section .btn-primary:hover { transform: scale(1.15); background-color: var(--secondary-color); }

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; background-color: #fff; padding: 50px; border-radius: 8px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); border-top: 4px solid var(--primary-color); }
.contact-intro { margin-top: -20px; margin-bottom: 30px; color: #666; line-height: 1.7; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #444; }
.form-group input,
.form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: var(--font-body); font-size: 1rem; background: #fdfbf7; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(255, 170, 0, 0.2); background: #fff;}
#form-status { margin-top: 20px; padding: 15px; border-radius: 5px; display: none; }
#form-status.sending { display: block; background-color: #fff3cd; color: #856404; border: 1px solid #ffeeba;}
#form-status.success { display: block; background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb;}
#form-status.error { display: block; background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb;}
.contact-info-box { margin-bottom: 30px; }
.contact-info-box h4 { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 20px; border-bottom: 2px solid var(--primary-color); padding-bottom: 10px; display: inline-block; color: var(--dark-color);}
.contact-info-box p { display: flex; align-items: flex-start; margin-bottom: 15px; color: #555; font-weight: 500;}
.contact-info-box i { color: var(--primary-color); margin-right: 15px; font-size: 1.2rem; width: 20px; text-align: center; margin-top: 3px; filter: drop-shadow(0 1px 2px rgba(255,170,0,0.3));}
.map-wrapper { border-radius: 8px; overflow: hidden; line-height: 0; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); border: 1px solid #eee;}

/****************************************************************/
/* 5. FOOTER VE WHATSAPP BUTONU                                 */
/****************************************************************/
.whatsapp-sticky,
.whatsapp-sticky:hover { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25D366; color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2.2rem; z-index: 999; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); animation: pulse 2s infinite; text-decoration: none; }
@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.main-footer { background-color: var(--dark-color); color: #d1d1d1; border-top: 3px solid var(--primary-color);}
.footer-top { padding: 70px 0; background: url('assets/images/cave-texture-dark.png') center/cover; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-logo { height: 80px; margin-bottom: 0; filter: drop-shadow(0 0 8px rgba(255,170,0,0.2));}
.footer-col .about-text { font-size: 0.95rem; line-height: 1.8; color: #bbb;}
.footer-title { font-family: var(--font-title); color: var(--primary-color); font-size: 1.3rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; letter-spacing: 1px;}
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--primary-color); }
.footer-col.links-col ul { list-style: none; padding: 0; }
.footer-col.links-col ul li { margin-bottom: 12px; }
.footer-col.links-col ul li a { color: #d1d1d1; text-decoration: none; transition: color 0.3s ease, padding-left 0.3s ease; font-weight: 500;}
.footer-col.links-col ul li a:hover { color: var(--primary-color); padding-left: 8px; }
.footer-col.contact-col p { display: flex; align-items: flex-start; margin-bottom: 15px; font-size: 0.95rem; }
.footer-col.contact-col i { color: var(--primary-color); margin-right: 15px; font-size: 1.1rem; margin-top: 4px; }
.social-links a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; border-radius: 50%; background-color: rgba(255, 170, 0, 0.1); color: var(--primary-color); text-decoration: none; margin-right: 10px; transition: all 0.3s ease; border: 1px solid rgba(255, 170, 0, 0.3);}
.social-links a:hover { background-color: var(--primary-color); color: var(--dark-color); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,170,0,0.3);}
.footer-bottom { background-color: #0d0805; padding: 25px 0; text-align: center; font-size: 0.9rem; color: #777; border-top: 1px solid rgba(255,255,255,0.05);}

/****************************************************************/
/* 6. RESPONSIVE TASARIM                                        */
/****************************************************************/
@media (max-width: 1200px) {
    .main-nav ul li { margin: 0 15px; }
    .logo { padding: 0 20px; }
}

@media (max-width: 992px) {
    .main-nav, .lang-switcher { display: none; }
    .header-right { flex: none; }
    .main-header .container { justify-content: space-between; }
    .hamburger-menu { display: block; }
    .activity-grid, .room-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-story-image { order: -1; }
    .homepage-room-gallery { grid-template-columns: repeat(2, 1fr); }
    .btn-reservation { display: none; }
    .room-gallery-grid .masonry-item,
    .room-gallery-grid .masonry-item-sizer { width: 48%; }
    
    /* Aktivite Düzeltme Mobil */
    .activity-block, .activity-block:nth-child(even) { grid-template-columns: 1fr; }
    .activity-image { min-height: 300px; }
    .activity-image img { position: relative; }
    .activity-content { padding: 40px 30px; }
    .activity-block:nth-child(even) .activity-image { order: 0; }
}

@media (max-width: 768px) {
    :root { --header-height: 80px; }
    .logo img { height: 70px; }
    .main-header.header-scrolled .logo img { height: 60px; }
    .main-header .container { justify-content: space-between; }
    .logo { padding: 0; }
    .activity-grid, .room-grid, .values-grid, .contact-grid, .about-content { grid-template-columns: 1fr; }
    .about-summary .about-text, .about-story-content .section-title-left { text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col { text-align: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-col.contact-col p { justify-content: center; }
    .contact-grid { padding: 30px 20px; }
    .homepage-room-gallery { grid-template-columns: 1fr; }
    .room-gallery-grid .masonry-item,
    .room-gallery-grid .masonry-item-sizer { width: 100%; }
}

@media (max-width: 480px) {
    .activity-content, .about-story-content, .value-item { padding: 30px 20px; }
}

/****************************************************************/
/* 7. ÖZEL DÜZELTMELER VE GALERİLER                             */
/****************************************************************/
.room-gallery-grid { position: relative; }
.room-gallery-grid a { display: block; overflow: hidden; line-height: 0; border-radius: 8px;}
.room-gallery-grid a img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.room-gallery-grid a:hover img { transform: scale(1.08); }

.room-gallery-grid .masonry-item { width: 32%; margin-bottom: 20px; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 2px solid rgba(255,170,0,0.1);}
.room-gallery-grid .masonry-item-sizer { width: 32%; }

.homepage-room-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.homepage-room-gallery a { width: 100%; margin-bottom: 0; display: block; overflow: hidden; border-radius: 8px; border: 1px solid rgba(255,170,0,0.1);}
.homepage-room-gallery a img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.homepage-room-gallery a:hover img { transform: scale(1.08); }

.room-card-link { text-decoration: none; }
.room-card-link:hover { text-decoration: none; }
.about-story-image-padded { max-width: 500px; padding-bottom: 25px; }
.page-header-photo, .page-header-contact { background-size: cover; background-position: center center; background-attachment: fixed; }
.page-header-photo { background-image: url('../images/header-bg.jpg'); }
.page-header-contact { background-image: url('../images/contact-bg.jpg'); }
.page-header-video { position: relative; overflow: hidden; background-color: var(--dark-color); }
.page-header-video .container { position: relative; z-index: 2; }
.page-header-video video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 0; opacity: 0.6;}

.room-detail-cta { text-align: center; padding: 80px 0; border-top: 1px solid #eee; margin-top: 60px; background: #fdfbf7;}
.room-detail-cta h2 { font-family: var(--font-title); font-size: 2.2rem; color: var(--secondary-color); margin-bottom: 15px; }
.room-detail-cta p { font-size: 1.1rem; color: #555; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/****************************************************************/
/* 8. PRELOADER (AÇILIŞ ANİMASYONU)                             */
/****************************************************************/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-color); /* Mağara karanlığı zemin */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOutPreloader 0.8s ease 2s forwards; /* 2 sn bekle, 0.8 sn'de kaybol */
    pointer-events: none; /* Animasyon sırasında arkaya tıklamayı önler */
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleUpContent 2.5s ease-out forwards; /* Hafifçe öne doğru büyüme */
}

.preloader-logo {
    height: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.4));
    animation: pulseFireGlow 2s infinite; /* Ateş gibi parlayıp sönme efekti */
}

.preloader-title {
    font-family: var(--font-title);
    color: var(--primary-color);
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 5px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards; /* Logodan hemen sonra belirme */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.preloader-slogan {
    font-family: var(--font-body);
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards; /* Slogan en son belirir */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* --- Preloader Animasyonları (Keyframes) --- */
@keyframes fadeOutPreloader {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

@keyframes scaleUpContent {
    0% { transform: scale(0.9); }
    100% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseFireGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.3)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 170, 0, 0.8)); transform: scale(1.05); }
    100% { filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.3)); transform: scale(1); }
}

/* Mobilde logoyu biraz daha küçültelim */
@media (max-width: 768px) {
    .preloader-logo { height: 130px; }
    .preloader-title { font-size: 1.8rem; }
    .preloader-slogan { font-size: 0.9rem; }
}