/****************************************************************/
/* 1. TEMEL VE GENEL STİLLER (TÜM SAYFALAR)                      */
/****************************************************************/
:root {
    --primary-color: #c5a47e;
    --secondary-color: #ab8a2c;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --font-title: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --header-height: 100px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #f9f9f9;
    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: 80px 0;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 700;
    border: 2px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

/* YENİ EKLENDİ: Büyük Buton Stili */
.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #b08d2b;
}

.section-title-left {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #b08d2b;
    text-align: left;
}

/****************************************************************/
/* 2. HEADER VE MOBİL MENÜ                                      */
/****************************************************************/
.main-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 164, 126, 0.2);
    transition: background-color var(--transition-speed) ease-in-out;
}

.main-header.header-scrolled {
    background: #121212;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-page .main-header {
    background: #121212;
}

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;
}

.main-nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 0;
    position: relative;
    transition: color var(--transition-speed);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #fff;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.logo {
    flex-shrink: 0;
    padding: 0 40px;
}

.logo img {
    height: 80px;
    transition: height var(--transition-speed) ease;
}

/* YENİ EKLENDİ: Header Rezervasyon Butonu Stili */
.btn-reservation {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    color: #fff;
    background-color: transparent;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    margin-right: 20px;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.btn-reservation:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(197, 164, 126, 0.3);
}

.lang-switcher {
    margin-left: 0; /* Rezervasyon butonu margin aldığı için bu sıfırlandı */
}

.lang-switcher a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
    padding: 0 5px;
    transition: color var(--transition-speed);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: #fff;
}

.lang-switcher span {
    color: rgba(255, 255, 255, 0.4);
}

.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: #fff;
    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: #121212;
    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);
}

/* YENİ EKLENDİ: Mobil Menü Rezervasyon Butonu Alanı */
.mobile-reservation-cta {
    margin-top: 30px;
    padding-bottom: 30px;
}

.mobile-lang-switcher {
    margin-top: 10px; /* Üstteki buton alanı nedeniyle boşluk ayarlandı */
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-switcher a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    padding: 0 10px;
    font-size: 1.2rem;
    transition: color var(--transition-speed);
}

.mobile-lang-switcher a.active,
.mobile-lang-switcher a:hover {
    color: #fff;
}

.mobile-lang-switcher span {
    color: rgba(255, 255, 255, 0.4);
}

/****************************************************************/
/* 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(0, 0, 0, 0.5);
}
.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.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
.slide-content p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.popular-activities { background-color: #fff; }
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.activity-card-link { display: block; text-decoration: none; }
.activity-card {
    height: 350px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.activity-card:hover { transform: translateY(-10px); box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1); }
.activity-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(10px);
    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: #fff; font-size: 1.5rem; text-decoration: none; margin: 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.room-gallery { background-color: #f9f9f9; padding-bottom: 80px; }
.about-summary { background-color: #fff; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.about-image { width: 100%; height: 500px; background-size: cover; background-position: center; border-radius: 8px; }
.btn-secondary { display: inline-block; padding: 10px 25px; background-color: transparent; color: var(--dark-color); text-decoration: none; border: 2px solid var(--dark-color); transition: all var(--transition-speed) ease; }
.btn-secondary:hover { background-color: var(--dark-color); color: var(--light-color); }
.google-reviews { background-color: #fff; }
.reviews-slider { padding-bottom: 50px; }
.review-card { position: relative; background: #fff; border: 1px solid #eee; 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.05); }
.review-card::before { content: '\f10d'; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 2.5rem; color: var(--primary-color); opacity: 0.1; position: absolute; top: 20px; left: 25px; }
.review-stars { color: var(--primary-color); font-size: 1.1rem; 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: 100px 0; text-align: center; position: relative; padding-top: calc(var(--header-height) + 40px); }
.page-header::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1; }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-family: var(--font-title); font-size: 3rem; color: #fff; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); }
.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.08); transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease; }
.room-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); }
.room-card-image { position: relative; overflow: hidden; height: 250px; }
.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.05); }
.room-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); display: flex; justify-content: center; align-items: center; color: #fff; font-family: var(--font-title); font-size: 1.1rem; 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: 4px solid var(--primary-color); text-align: center; min-height: 90px; display: flex; justify-content: center; align-items: center; }
.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(--dark-color); margin-bottom: 15px; }
.room-detail-subtitle { font-size: 1.1rem; color: #666; max-width: 700px; margin: 0 auto; line-height: 1.7; }
.activity-block { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; margin-bottom: 60px; 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.6s ease-out, transform 0.6s ease-out; }
.activity-block.is-visible { opacity: 1; transform: translateY(0); }
.activity-block:nth-child(even) { grid-template-columns: 1.2fr 1fr; }
.activity-block:nth-child(even) .activity-image { order: 2; }
.activity-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.activity-content { padding: 40px; display: flex; flex-direction: column; }
.activity-title { font-family: var(--font-title); font-size: 2.2rem; color: var(--dark-color); margin-bottom: 15px; }
.activity-description { color: #555; line-height: 1.7; flex-grow: 1; }
.activity-action { margin-top: 30px; }
.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); }
.about-story-content p { color: #555; line-height: 1.8; margin-bottom: 1.5em; }
.why-us-section { background-color: #f9f9f9; }
.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: border-color var(--transition-speed) ease, transform var(--transition-speed) ease; }
.value-item:hover { transform: translateY(-10px); border-color: var(--primary-color); }
.value-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; display: inline-block; transition: transform 0.3s ease; }
.value-item:hover .value-icon { transform: scale(1.1); }
.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; }
.cta-section { background-size: cover; background-position: center; background-attachment: fixed; position: relative; }
.cta-overlay { background-color: rgba(0, 0, 0, 0.7); padding: 100px 0; }
.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.5); margin-bottom: 15px; }
.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); }
.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; 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(212, 175, 55, 0.2); }
#form-status { margin-top: 20px; padding: 15px; border-radius: 5px; display: none; }
#form-status.sending { display: block; background-color: #eef2fa; color: #3b76f5; }
#form-status.success { display: block; background-color: #e6f9f0; color: #0d8a50; }
#form-status.error { display: block; background-color: #fdeeee; color: #c93434; }
.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; }
.contact-info-box p { display: flex; align-items: flex-start; margin-bottom: 15px; color: #555; }
.contact-info-box i { color: var(--primary-color); margin-right: 15px; font-size: 1.2rem; width: 20px; text-align: center; margin-top: 3px; }
.map-wrapper { border-radius: 8px; overflow: hidden; line-height: 0; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }

/****************************************************************/
/* 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: #a9a9a9; }
.footer-top { padding: 70px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-logo { height: 60px; margin-bottom: 20px; }
.footer-col .about-text { font-size: 0.9rem; line-height: 1.7; }
.footer-title { font-family: var(--font-title); color: var(--light-color); font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.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: #a9a9a9; text-decoration: none; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col.links-col ul li a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-col.contact-col p { display: flex; align-items: flex-start; margin-bottom: 15px; font-size: 0.9rem; }
.footer-col.contact-col i { color: var(--primary-color); margin-right: 15px; font-size: 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, 255, 255, 0.1); color: var(--light-color); text-decoration: none; margin-right: 10px; transition: background-color 0.3s ease, transform 0.3s ease; }
.social-links a:hover { background-color: var(--primary-color); transform: translateY(-3px); }
.footer-bottom { background-color: #000; padding: 20px 0; text-align: center; font-size: 0.9rem; color: #777; }

/****************************************************************/
/* 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); }
    /* YENİ EKLENDİ: Rezervasyon butonunu mobil header'da gizle */
    .btn-reservation { display: none; }
    /* YENİ EKLENDİ: Masonry galeri 2 sütun */
    .room-gallery-grid .masonry-item,
    .room-gallery-grid .masonry-item-sizer {
        width: 48%;
    }
}

@media (max-width: 768px) {
    :root { --header-height: 80px; }
    .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; }
    .activity-block, .activity-block:nth-child(even) { grid-template-columns: 1fr; }
    .activity-block:nth-child(even) .activity-image { order: initial; }
    .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; }
    /* YENİ EKLENDİ: Masonry galeri 1 sütun */
    .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; }
}

/****************************************************************/
/* 7. ÖZEL DÜZELTMELER VE GALERİLER                             */
/****************************************************************/

/* DEĞİŞTİRİLDİ: Masonry Galeri Uyumluluğu */
.room-gallery-grid {
    position: relative; /* Masonry'nin çalışması için gerekli */
}
.room-gallery-grid a { display: block; overflow: hidden; line-height: 0; }
.room-gallery-grid a img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.room-gallery-grid a:hover img { transform: scale(1.05); }

/* YENİ EKLENDİ: Masonry Galeri Öğe Boyutlandırması */
.room-gallery-grid .masonry-item {
    width: 32%; 
    margin-bottom: 20px; 
    border-radius: 8px;
    overflow: hidden;
}
.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: 5px; }
.homepage-room-gallery a img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.homepage-room-gallery a:hover img { transform: scale(1.05); }

.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: #333; }
.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; }

/* YENİ EKLENDİ: Sayfa Sonu Rezervasyon Butonu Bölümü */
.room-detail-cta {
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid #eee;
    margin-top: 60px;
}
.room-detail-cta h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}
.room-detail-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}