﻿        :root {
            --gold-primary: #b59b6d;
            --footer-bg: #000000;
            --transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            overflow-x: hidden;
            background-color: #fff;
            -webkit-font-smoothing: antialiased;
            top: 0 !important;
        }
		a { text-decoration: none; }
        .goog-te-banner-frame,
        .goog-te-banner-frame.skiptranslate,
        iframe.goog-te-banner-frame { 
            display: none !important; 
            visibility: hidden !important; 
        }
        body > .skiptranslate {
            display: none !important;
        }
        #google_translate_element { display: none !important; }
        .goog-text-highlight { background: transparent !important; box-shadow: none !important; }
        html, body { top: 0 !important; position: static !important; }

        h1, h2, h3, h4, .oswald {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .serif-font {
            font-family: 'Playfair Display', serif;
        }

        /* --- İlk Giriş Şube Seçim Ekranı --- */
        #branchSelectionOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.98);
            z-index: 99990;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 1;
            transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.8s ease;
            backdrop-filter: blur(15px);
        }

        #branchSelectionOverlay.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .branch-cards-container {
            display: flex;
            gap: 30px;
            margin-top: 50px;
            width: 100%;
            max-width: 1000px;
            padding: 0 20px;
        }

        .branch-card {
            flex: 1;
            height: 400px;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .branch-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.5s ease;
            opacity: 0.5;
        }

        .branch-card:hover {
            border-color: var(--gold-primary);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .branch-card:hover img {
            transform: scale(1.1);
            opacity: 0.8;
        }

        .branch-card-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%);
            color: #fff;
            text-align: center;
            padding: 30px;
        }

        .branch-card-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .branch-card-content p {
            font-size: 0.9rem;
            color: var(--gold-primary);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
        }

        .branch-card-content .select-btn {
            margin-top: 30px;
            padding: 12px 30px;
            border: 1px solid #fff;
            background: transparent;
            color: #fff;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            transition: 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .branch-card:hover .select-btn {
            opacity: 1;
            transform: translateY(0);
            background: var(--gold-primary);
            border-color: var(--gold-primary);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            height: calc(var(--vh, 1vh) * 100);
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: flex-end; 
            justify-content: flex-start;
            color: #fff;
            background-color: #000;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .video-background iframe {
            width: 100vw;
            height: 56.25vw;
            min-height: 100vh;
            min-width: 177.77vh;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1.2); 
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.7) 100%);
            z-index: 2;
        }

        .scroll-down {
            position: absolute;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            cursor: pointer;
            color: #fff;
            font-size: 2.5rem;
            animation: bounce 2s infinite;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-10px) translateX(-50%);}
            60% {transform: translateY(-5px) translateX(-50%);}
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 2000;
            padding: 1.5rem 2rem;
            background: transparent !important;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(10, 10, 10, 0.95) !important;
            padding: 1rem 2rem;
            backdrop-filter: blur(10px);
        }

        .nav-left, .nav-right { display: flex; align-items: center; gap: 20px; }

        .lang-dropdown-wrapper { position: relative; }
        .lang-current {
            color: #fff; font-size: 0.8rem; font-weight: 600; text-decoration: none;
            text-transform: uppercase; letter-spacing: 1px; display: flex;
            align-items: center; gap: 8px; cursor: pointer; padding: 5px 0;
        }
        .lang-current img { width: 20px; border-radius: 2px; }

        .lang-list {
            position: absolute; top: 100%; left: 0; background: #fff;
            min-width: 160px; list-style: none; padding: 10px 0; margin: 10px 0 0 0;
            border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            opacity: 0; visibility: hidden; transform: translateY(10px);
            transition: var(--transition);
        }
        .lang-dropdown-wrapper:hover .lang-list { opacity: 1; visibility: visible; transform: translateY(0); }
        .lang-item {
            padding: 10px 20px; display: flex; align-items: center; gap: 12px;
            cursor: pointer; color: #333; font-size: 0.8rem; font-weight: 600;
        }
        .lang-item:hover { background: #f8f8f8; color: var(--gold-primary); }
        .lang-item img { width: 20px; border-radius: 2px; }

        .menu-toggle {
            background: transparent; border: none; color: #fff;
            display: flex; align-items: center; gap: 12px; font-size: 0.8rem;
            text-transform: uppercase; font-weight: 600; letter-spacing: 1px; cursor: pointer;
            padding: 5px 0;
        }
        .menu-icon-bar { width: 24px; height: 1px; background: #fff; position: relative; }
        .menu-icon-bar::before, .menu-icon-bar::after {
            content: ''; position: absolute; width: 24px; height: 1px; background: #fff; left: 0;
        }
        .menu-icon-bar::before { top: -8px; }
        .menu-icon-bar::after { top: 8px; }

        .navbar-brand img { height: 60px; filter: brightness(0) invert(1); transition: var(--transition); }
        .btn-pill {
            border-radius: 50px; padding: 8px 25px; font-size: 0.7rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1px; transition: var(--transition);
            display: flex; align-items: center; gap: 8px; text-decoration: none;
        }
        .btn-book { background: #fff; color: #000; border: 1px solid #fff; }

        /* Fullscreen Menu Overlay */
        .full-menu-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: #fff; z-index: 4000; display: none; overflow-y: auto;
            padding: 30px 60px; animation: fadeIn 0.4s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .full-menu-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 50px;
        }
        .close-menu { background: none; border: none; font-size: 2.2rem; cursor: pointer; color: #111; padding: 0; }

        .menu-nav-list { list-style: none; padding: 0; margin-bottom: 50px; }
        .menu-nav-list li { margin-bottom: 12px; }
        .menu-nav-list a { 
            font-family: 'Playfair Display', serif; font-size: 2.8rem; color: #111; 
            text-decoration: none; transition: 0.3s; 
        }
        .menu-nav-list a:hover { opacity: 0.6; }

        .menu-section-label { 
            color: #b59b6d; font-size: 0.75rem; font-weight: 700; 
            text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; display: block; 
        }
        .menu-info-text { color: #111; font-size: 0.95rem; margin-bottom: 30px; line-height: 1.5; }
        .menu-info-text a { color: #111; text-decoration: none; transition: 0.3s; }
        .menu-info-text a:hover { color: var(--gold-primary); }

        .menu-social-icons { display: flex; gap: 15px; margin: 30px 0; }
        .menu-social-icons a { 
            width: 38px; height: 38px; background-color: #c2b4a2; color: #fff; 
            border-radius: 50%; display: flex; align-items: center; justify-content: center; 
            text-decoration: none; transition: all 0.3s ease; font-size: 1.1rem; 
        }
        .menu-social-icons a:hover { background-color: var(--gold-primary); color: #fff; transform: translateY(-3px); }

        .menu-bottom-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.8rem; border-top: 1px solid #eee; padding-top: 20px; }
        .menu-bottom-links a { color: #999; text-decoration: none; }

        /* --- Booking Search Bar --- */
        .booking-bar-wrapper {
            position: relative;
            z-index: 100;
            margin-top: -45px;
            padding: 0 15px;
            scroll-margin-top: 100px;
        }

        .booking-bar {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            padding: 10px;
            margin: 0 auto;
            max-width: 1200px;
        }

        .booking-field {
            display: flex;
            align-items: center;
            flex: 1;
            padding: 5px 25px;
            border-right: 1px solid #eaeaea;
            gap: 15px;
            position: relative;
        }

        .booking-field.border-0 {
            border-right: none;
        }

        .field-icon {
            color: #111; 
            font-size: 1.3rem;
        }

        .field-content {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .field-content label {
            font-size: 0.75rem;
            color: #888;
            font-weight: 600;
            margin-bottom: 2px;
            text-transform: uppercase;
        }

        .field-content input, .field-content select {
            border: none;
            padding: 0;
            margin: 0;
            font-size: 1rem;
            color: #222;
            font-weight: 500;
            background: transparent;
            outline: none;
            box-shadow: none;
            cursor: pointer;
            width: 100%;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .field-content input::placeholder {
            color: #bbb;
        }

        .btn-booking-search {
            background-color: #111; 
            color: #fff;
            border: none;
            border-radius: 5px;
            padding: 18px 40px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-booking-search:hover {
            background-color: #333;
            transform: translateY(-2px);
        }

        /* --- Flatpickr (Tarih) & Misafir Dropdown --- */
        .flatpickr-calendar { box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important; border: none !important; border-radius: 8px !important; }
        .flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay { background: var(--gold-primary) !important; border-color: var(--gold-primary) !important; color: #fff !important; }
        .flatpickr-day.inRange { background: #e6dcc6 !important; border-color: #e6dcc6 !important; box-shadow: -5px 0 0 #e6dcc6, 5px 0 0 #e6dcc6 !important; }
        
        .guest-selector-wrapper { position: relative; width: 100%; }
        .guest-dropdown { position: absolute; top: calc(100% + 20px); left: 0; background: #fff; width: 280px; padding: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); border-radius: 8px; z-index: 1000; opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid #eaeaea; }
        .guest-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }
        .guest-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-weight: 600; color: #333; }
        .guest-row span { font-size: 0.95rem; }
        .counter { display: flex; align-items: center; gap: 15px; }
        .counter button { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #ddd; background: #f9f9f9; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #333; transition: 0.3s; }
        .counter button:hover { border-color: var(--gold-primary); background: var(--gold-primary); color: #fff; }
        .counter span { width: 15px; text-align: center; font-size: 1rem; }
        .btn-guest-apply { width: 100%; background: #111; color: #fff; border: none; padding: 12px; border-radius: 5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; }
        .btn-guest-apply:hover { background: #333; }

        /* --- Özel Select (Konaklama) --- */
        .custom-select-wrapper { position: relative; cursor: pointer; }
        .custom-select-wrapper .field-content input { cursor: pointer; }
        .select-arrow { position: absolute; right: 20px; color: #888; transition: 0.3s; pointer-events: none; font-size: 1.2rem; }
        .custom-dropdown { position: absolute; top: calc(100% + 20px); left: 0; background: #fff; width: 100%; min-width: 250px; padding: 10px 0; box-shadow: 0 15px 40px rgba(0,0,0,0.15); border-radius: 8px; z-index: 1000; opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid #eaeaea; }
        .custom-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }
        .custom-dropdown-item { padding: 12px 20px; font-size: 0.95rem; color: #333; cursor: pointer; transition: background 0.2s, color 0.2s; }
        .custom-dropdown-item:hover { background: #fdfaf4; color: var(--gold-primary); }
        .custom-dropdown-item.selected { font-weight: 700; color: var(--gold-primary); background: #fdfaf4; border-left: 3px solid var(--gold-primary); }

        /* welcomeSection */
        .welcome-split-section { background-color: #fff; padding: 0; overflow: hidden; margin-top: 60px; }
        .welcome-img-container { height: 600px; width: 100%; }
        .welcome-img-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .welcome-text-col { display: flex; align-items: center; padding: 60px 80px; }

        /* Hero Content */
        .hero-content { z-index: 3; text-align: left; padding: 0 0 160px 80px; max-width: 900px; }
        .hero-content h1 { font-size: calc(2.5rem + 3vw); font-weight: 300; margin-bottom: 1rem; text-shadow: 0 4px 30px rgba(0,0,0,0.6); line-height: 1.1; }

        /* --- Profesyonel Swiper Pagination --- */
        .swiper-container { padding-bottom: 60px !important; }
        .swiper-pagination { bottom: 10px !important; display: flex; justify-content: center; align-items: center; }
        
        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: transparent;
            border: 1px solid var(--gold-primary);
            opacity: 0.4;
            border-radius: 10px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            margin: 0 6px !important;
            cursor: pointer;
        }
        
        .swiper-pagination-bullet:hover {
            opacity: 0.8;
        }
        
        .swiper-pagination-bullet-active {
            width: 32px;
            background: var(--gold-primary);
            border-color: var(--gold-primary);
            opacity: 1;
        }

        /* Konaklama Bölümü */
        .rooms-section { padding: 120px 0; background-color: #fff; }
        .section-header { margin-bottom: 60px; }
        .section-header .sub-title { color: var(--gold-primary); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px; }
        .section-header h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: #111; text-transform: none; }

        .room-card-premium { position: relative; overflow: hidden; background-color: #fff; border: none; cursor: pointer; display: block; text-decoration: none; }
        .room-image-wrapper { position: relative; height: 550px; width: 100%; overflow: hidden; }
        .room-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
        .room-card-premium:hover .room-image-wrapper img { transform: scale(1.08); }
        .room-content-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%); color: #fff; transition: var(--transition); z-index: 5; }
        .room-category { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-primary); display: block; margin-bottom: 10px; }
        .room-title-premium { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 15px; font-weight: 400; color: #fff; }
        .room-desc-premium { font-size: 0.9rem; line-height: 1.6; opacity: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; color: rgba(255,255,255,0.8); }
        .room-card-premium:hover .room-desc-premium { opacity: 1; max-height: 100px; margin-bottom: 20px; }
        .room-link-premium { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 5px; transition: 0.3s; }

        /* Blog Bölümü */
        .blog-section { padding: 100px 0; background-color: #f9f9f9; }
        .blog-card { background: transparent; border: none; transition: var(--transition); margin-bottom: 30px; display: block; text-decoration: none; }
        .blog-img-wrapper { position: relative; overflow: hidden; height: 350px; margin-bottom: 25px; }
        .blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
        .blog-card:hover .blog-img-wrapper img { transform: scale(1.05); }
        .blog-date { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--gold-primary); letter-spacing: 1px; margin-bottom: 10px; display: block; }
        .blog-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #111; line-height: 1.4; margin-bottom: 15px; }
        .blog-excerpt {font-size: 0.9rem;color: #666;line-height: 1.6;margin-bottom: 20px;display: -webkit-box;-webkit-line-clamp: 3;   /* max 3 satır */-webkit-box-orient: vertical;overflow: hidden;}

        /* Galeri Bölümü */
        .gallery-section { padding: 100px 0; background-color: #fff; }
        .gallery-item { position: relative; overflow: hidden; cursor: pointer; display: block; border-radius: 4px; }
        .gallery-item img { width: 100%; height: 320px; object-fit: cover; transition: transform 1s ease; display: block; }
        .gallery-item:hover img { transform: scale(1.1); }
        .gallery-item::after { content: '\f002'; font-family: FontAwesome; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 1.5rem; opacity: 0; transition: 0.4s; z-index: 2; }
        .gallery-item:hover::after { opacity: 1; }
        .gallery-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); opacity: 0; transition: 0.4s; z-index: 1; }
        .gallery-item:hover::before { opacity: 1; }

        /* --- Özel Galeri Sayfası Grid --- */
        .main-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

        /* Footer */
        .footer-new { background-color: var(--footer-bg); color: #fff; padding: 80px 0 40px; font-size: 0.9rem; }
        .footer-new a { color: #fff; text-decoration: none; transition: 0.3s; display: block; margin-bottom: 12px; opacity: 0.9; }
        .footer-new a:hover { opacity: 1; padding-left: 5px; }
        .footer-title { font-weight: 600; margin-bottom: 25px; display: block; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); }
        
        .social-icons-footer { display: flex; gap: 12px; margin-top: 15px; }
        .social-icons-footer a { 
            width: 36px; height: 36px; background-color: rgba(255, 255, 255, 0.08); 
            border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; 
            display: flex; align-items: center; justify-content: center; 
            margin: 0 !important; opacity: 1 !important; font-size: 1rem; 
            transition: all 0.3s ease; color: #fff;
        }
        .social-icons-footer a:hover { border-color: #fff; background-color: #fff; color: var(--footer-bg) !important; transform: translateY(-3px); padding-left: 0 !important; }

        .footer-bottom { 
            margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); 
            display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; 
            font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); 
        }
        
        .footer-legal-links { display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; }
        .footer-legal-links a { margin: 0 !important; opacity: 0.6; display: inline-block !important; }

        .back-to-top { display: flex; flex-direction: column; align-items: center; cursor: pointer; gap: 5px; color: rgba(255, 255, 255, 0.8); }

        /* --- SPA Sayfa Geçişleri (Yeni) --- */
        .page-view {width: 100%; min-height: 100vh; animation: fadeInView 0.5s ease forwards; }
        .page-view.active { display: block; }
        @keyframes fadeInView { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
        
        /* --- Alt Sayfa Header (Yeni) --- */
        .subpage-header {position: relative;height: 50vh;display: flex;align-items: center;justify-content: center;background: #111;overflow: hidden;margin-bottom: 50px;}
        .subpage-header img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
        .subpage-header-content { position: relative; z-index: 2; text-align: center; color: #fff; }
        .subpage-header-content h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; text-transform: none; margin-bottom: 10px; }
        .subpage-header-content p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold-primary); font-weight: 700; }

        /* --- Oda Detay Sayfası (Yeni) --- */
        .room-detail-container { padding-bottom: 100px; }
        .room-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
        .room-detail-content h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; text-transform: none; }
        .room-features { display: flex; flex-wrap: wrap; gap: 20px; margin: 30px 0; padding: 20px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
        .room-feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #555; }
        .room-feature-item i { color: var(--gold-primary); font-size: 1.2rem; }
        .room-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 40px; }
        .room-gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; cursor: pointer; transition: 0.3s; }
        .room-gallery-grid img:hover { opacity: 0.8; }
        
        .room-booking-card { background: #fdfaf4; padding: 40px; border-radius: 8px; border: 1px solid #f0e6d2; position: sticky; top: 100px; }
        .room-price-tag { font-size: 2rem; font-family: 'Playfair Display', serif; color: #111; margin-bottom: 20px; }
        .room-price-tag span { font-size: 0.9rem; color: #777; font-family: 'Open Sans', sans-serif; }
        
        /* --- İletişim & Form Elemanları Güncellemesi --- */
        .contact-info-box { padding: 40px; background: #fdfaf4; border: 1px solid #f0e6d2; border-radius: 8px; height: 100%; }
        
        /* Estetik ve Daha İnce Form Elemanları */
        .contact-form .form-control, .contact-form .form-select {
            border-radius: 6px;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            font-size: 0.95rem;
            color: #444;
            background-color: #fafafa;
            transition: all 0.3s ease;
        }
        
        .contact-form .form-control:focus, .contact-form .form-select:focus { 
            box-shadow: 0 0 0 3px rgba(181, 155, 109, 0.15); 
            border-color: var(--gold-primary); 
            background-color: #fff;
            outline: none;
        }
        
        /* Input grup içindeki köşeleri otomatik yönetmek için eziyoruz */
        .contact-form .input-group .form-control, .contact-form .input-group .form-select {
            margin-bottom: 0; 
        }

        .contact-form label { 
            font-size: 0.8rem; 
            color: #666; 
            letter-spacing: 0.5px; 
            text-transform: uppercase; 
        }
        
        .text-gold { color: var(--gold-primary); }

        /* --- Rezervasyon Sonuçları Sayfası (Yeni) --- */
        .search-header-bar { background: #111; color: #fff; padding: 20px 0; position: sticky; top: 80px; z-index: 100; margin-bottom: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .search-summary-item { display: inline-flex; align-items: center; margin-right: 30px; font-size: 0.9rem; font-weight: 600; }
        .search-summary-item i { color: var(--gold-primary); margin-right: 10px; font-size: 1.2rem; }
        
        .search-result-card { display: flex; border: 1px solid #eaeaea; border-radius: 8px; overflow: hidden; margin-bottom: 30px; background: #fff; transition: var(--transition); }
        .search-result-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: var(--gold-primary); }
        .search-img-wrap { width: 35%; flex-shrink: 0; position: relative; }
        .search-img-wrap img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
        .search-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
        .search-content-top { display: flex; justify-content: space-between; align-items: flex-start; }
        .search-price-box { text-align: right; background: #fdfaf4; padding: 20px; border-radius: 8px; border: 1px solid #f0e6d2; min-width: 220px; }
        .search-price-box .total-price { font-size: 2.2rem; font-family: 'Playfair Display', serif; color: #111; line-height: 1; margin-bottom: 5px; }

        /* --- Checkout (Ödeme) Sayfası (Yeni) --- */
        .checkout-summary { background: #fdfaf4; padding: 30px; border-radius: 8px; border: 1px solid #f0e6d2; position: sticky; top: 120px; }
        .checkout-summary img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; margin-bottom: 20px; }
        .checkout-form-section { margin-bottom: 40px; }
        .checkout-form-section h4 { font-family: 'Playfair Display', serif; text-transform: none; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
        
        /* --- Restoran ve Menü Stilleri (Güncellendi) --- */
        .restaurant-menu-section { margin-bottom: 80px; }
        .restaurant-menu-section-title { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 4px; font-size: 2rem; color: #111; text-align: center; margin-bottom: 50px; position: relative; }
        .restaurant-menu-section-title::after { content: ''; display: block; width: 60px; height: 2px; background: var(--gold-primary); margin: 15px auto 0; }
        
        .restaurant-menu-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
        @media (min-width: 992px) { .restaurant-menu-grid { grid-template-columns: 1fr 1fr; gap: 50px; } }
        
        .rm-subcategory { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold-primary); margin-bottom: 20px; grid-column: 1 / -1; border-bottom: 1px solid #eaeaea; padding-bottom: 10px; }
        
        .restaurant-menu-item { margin-bottom: 0; }
        .restaurant-menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; position: relative; }
        .restaurant-menu-item-header::after { content: ''; position: absolute; bottom: 4px; left: 0; width: 100%; border-bottom: 1px dotted #ccc; z-index: 1; }
        .rm-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #111; margin: 0; background: #fff; padding-right: 15px; z-index: 2; position: relative; font-weight: 600; }
        .rm-price { color: var(--gold-primary); font-weight: 600; font-size: 1.1rem; background: #fff; padding-left: 15px; z-index: 2; position: relative; font-family: 'Oswald', sans-serif; letter-spacing: 1px; }
        .rm-desc { color: #666; font-size: 0.9rem; margin: 0; line-height: 1.6; font-style: italic; }

        /* Modal Success */
        .success-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 9999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
        .success-modal { background: #fff; padding: 50px; border-radius: 8px; text-align: center; max-width: 500px; animation: scaleIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
        .success-modal i { font-size: 4rem; color: #2ecc71; margin-bottom: 20px; }
        @keyframes scaleIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }



        /* --- Profesyonel Preloader --- */
        #preloader {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background-color: #000; z-index: 99999; display: flex;
            justify-content: center; align-items: center;
            transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.8s ease;
        }
        #preloader.fade-out { opacity: 0; visibility: hidden; }
        .preloader-content { display: flex; flex-direction: column; align-items: center; }
        .preloader-logo {
            height: 60px; width: auto; filter: brightness(0) invert(1);
            margin-bottom: 25px; animation: pulseLogo 2s ease-in-out infinite;
        }
        .preloader-line-wrapper {
            width: 100%; height: 2px; background: rgba(255, 255, 255, 0.1);
            position: relative; overflow: hidden; border-radius: 2px;
        }
        .preloader-line {
            position: absolute; top: 0; left: 0; height: 100%; width: 50%;
            background-color: var(--gold-primary);
            animation: loadingLine 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
        }
        @keyframes pulseLogo {
            0% { opacity: 0.5; transform: scale(0.95); }
            50% { opacity: 1; transform: scale(1); }
            100% { opacity: 0.5; transform: scale(0.95); }
        }
        @keyframes loadingLine { 0% { left: -50%; } 100% { left: 100%; } }
        
        body.preloader-active, body.branch-selection-active { overflow: hidden !important; }

.pgaleri a img {
    width: 100%;
    height: 135px;
}

.pgaleri a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.gallery>div>a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.gallery>div>a>img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery>div>a>span {
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
    padding: 10px;
    background-color: #111111;
    color: white;
}



