/* Hotel & Pansiyon Script - Main Stylesheet */
/* CDN-free, vanilla CSS */

:root {
    --primary-color: #c9a227;
    --secondary-color: #1a1a2e;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f5f5f5;
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --border-radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); font-size: 16px; line-height: 1.6; color: var(--text-color); background: var(--white); }

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; color: var(--secondary-color); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }
a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-color); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.section { padding: 80px 0; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.section-header.center { flex-direction: column; text-align: center; }
.section-title { font-size: 1.75rem; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--primary-color); margin-top: 10px; }
.section-header.center .section-title::after { margin: 10px auto 0; }
.section-subtitle { color: var(--text-light); margin-top: 10px; max-width: 600px; }
.section-intro { text-align: center; max-width: 700px; margin: 0 auto 40px; }

.view-all { display: flex; align-items: center; gap: 8px; color: var(--primary-color); font-weight: 500; }
.view-all:hover { color: var(--secondary-color); }

/* Buttons */
.btn { display: inline-block; padding: 12px 30px; border: none; border-radius: var(--border-radius); font-size: 1rem; font-weight: 500; cursor: pointer; transition: var(--transition); text-align: center; }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }
.btn-lg { padding: 15px 40px; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; }
.btn-primary { background: var(--primary-color); color: var(--white); }
.btn-primary:hover { background: var(--secondary-color); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: var(--white); }
.btn-outline-white { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--secondary-color); }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 15px 0; transition: var(--transition); background: transparent; }
.navbar.scrolled { background: var(--white); box-shadow: var(--shadow); padding: 10px 0; }

/* Slider kapalıyken navbar */
.navbar.no-slider { background: var(--secondary-color); }
.navbar.no-slider .logo-text { color: var(--white); }
.navbar.no-slider .nav-link { color: var(--white); }
.navbar.no-slider .lang-btn { background: rgba(255,255,255,0.2); color: var(--white); }
.navbar.no-slider .mobile-toggle span { background: var(--white); }
.navbar.no-slider.scrolled { background: var(--white); }
.navbar.no-slider.scrolled .logo-text { color: var(--secondary-color); }
.navbar.no-slider.scrolled .nav-link { color: var(--text-color); }
.navbar.no-slider.scrolled .lang-btn { background: var(--background-light); color: var(--text-color); }
.navbar.no-slider.scrolled .mobile-toggle span { background: var(--secondary-color); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo img { height: 50px; width: auto; }
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--white); transition: var(--transition); }
.logo-sub { font-size: 0.75rem; color: var(--primary-color); text-transform: uppercase; letter-spacing: 2px; }
.navbar.scrolled .logo-text { color: var(--secondary-color); }
.nav-menu { display: flex; gap: 30px; }
.nav-link { color: var(--white); font-weight: 500; padding: 5px 0; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-color); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--text-color); }
.nav-right { display: flex; align-items: center; gap: 15px; }
.lang-selector { position: relative; }
.lang-btn { background: rgba(255,255,255,0.2); border: none; color: var(--white); padding: 8px 15px; border-radius: 4px; cursor: pointer; font-size: 0.9rem; }
.navbar.scrolled .lang-btn { background: var(--background-light); color: var(--text-color); }
.lang-dropdown { position: absolute; top: 100%; right: 0; background: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow-hover); min-width: 150px; display: none; }
.lang-selector:hover .lang-dropdown { display: block; }
.lang-dropdown a { display: block; padding: 10px 15px; color: var(--text-color); }
.lang-dropdown a:hover, .lang-dropdown a.active { background: var(--background-light); color: var(--primary-color); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-toggle span { display: block; width: 25px; height: 2px; background: var(--white); transition: var(--transition); }
.navbar.scrolled .mobile-toggle span { background: var(--secondary-color); }

/* Hero Slider */
.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }

/* Hero Spacer - Slider kapalıyken navbar altı boşluk */
.hero-spacer { height: 100px; background: var(--secondary-color); }

/* Body no-slider - içerik üstten boşluk */
body.no-slider .booking-bar { margin-top: 0; }
body.no-slider .section:first-of-type { padding-top: 40px; }
.slides-container { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; }
.slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay-dark); }
.slide-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: var(--white); z-index: 10; width: 90%; max-width: 800px; }
.slide-title { font-size: 3rem; color: var(--white); margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.slide-subtitle { font-size: 1.25rem; color: var(--white); opacity: 0.9; margin-bottom: 30px; }
.slider-prev, .slider-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border: none; color: var(--white); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; z-index: 20; }
.slider-prev:hover, .slider-next:hover { background: var(--primary-color); }
.slider-prev { left: 30px; }
.slider-next { right: 30px; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 20; }
.slider-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--white); background: transparent; cursor: pointer; transition: var(--transition); }
.slider-dot.active, .slider-dot:hover { background: var(--primary-color); border-color: var(--primary-color); }

/* Booking Bar */
/* Modern Booking Bar */
.booking-bar { 
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); 
    padding: 40px 0; 
    margin-top: -50px; 
    position: relative; 
    z-index: 30;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.booking-form { 
    display: flex; 
    gap: 20px; 
    align-items: flex-end; 
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form__field { 
    flex: 1; 
    min-width: 180px; 
}

.booking-form__field--button {
    flex-shrink: 0;
    min-width: auto;
}

.booking-form__label {
    display: block;
    width: 100%;
}

.booking-form__label-text {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.booking-form__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.booking-form__input {
    width: 100%;
    padding: 14px 45px 14px 16px;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.booking-form__input:focus {
    outline: none;
    border-color: #c9a227;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
    transform: translateY(-2px);
}

.booking-form__input::placeholder {
    color: #999;
    font-weight: 400;
}

.booking-form__select {
    cursor: pointer;
    padding-right: 45px;
}

.booking-form__icon {
    position: absolute;
    right: 16px;
    pointer-events: none;
    color: #666;
    transition: color 0.3s ease;
}

.booking-form__input:focus + .booking-form__icon,
.booking-form__input-wrapper:hover .booking-form__icon {
    color: #c9a227;
}

.booking-form__icon--chevron {
    right: 14px;
}

.booking-form__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    min-width: 180px;
    height: 52px;
}

.booking-form__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff5a8a 0%, #ff7fa0 100%);
}

.booking-form__button:active {
    transform: translateY(0);
}

.booking-form__button svg {
    transition: transform 0.3s ease;
}

.booking-form__button:hover svg {
    transform: scale(1.1);
}

/* Date input özelleştirme */
.booking-form__input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.booking-form__input[type="date"] {
    color-scheme: light;
}

/* Room Cards */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.rooms-grid--large { grid-template-columns: 1fr; }
.room-card { position: relative; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--white); }
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.room-card--horizontal { display: grid; grid-template-columns: 400px 1fr; }
.room-card__image { position: relative; height: 220px; overflow: hidden; }
.room-card--horizontal .room-card__image { height: 100%; min-height: 280px; }
.room-card__image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.room-card:hover .room-card__image img { transform: scale(1.05); }
.room-card__price { position: absolute; bottom: 0; left: 0; background: var(--primary-color); color: var(--white); padding: 10px 20px; font-weight: 600; font-size: 1.1rem; }
.room-card__price span { font-size: 0.85rem; font-weight: 400; }
.room-card__badge { position: absolute; top: 15px; right: 15px; background: var(--secondary-color); color: var(--white); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; }
.room-card__badge.new { background: #27ae60; }
.room-card__content { padding: 25px; }
.room-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.room-card__desc { color: var(--text-light); font-size: 0.95rem; margin-bottom: 15px; }
.room-card__features { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
.room-card__features span { display: flex; align-items: center; gap: 5px; font-size: 0.9rem; color: var(--text-light); }
.room-card__features svg { color: var(--primary-color); }
.room-card__actions { display: flex; gap: 10px; }

/* CTA Section */
.cta-section { position: relative; padding: 100px 0; background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920'); background-size: cover; background-position: center; background-attachment: fixed; }
.cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay-dark); }
.cta-content { position: relative; z-index: 10; text-align: center; color: var(--white); }
.cta-content h2 { font-size: 2.5rem; color: var(--white); margin-bottom: 15px; }
.cta-content p { font-size: 1.25rem; color: var(--white); opacity: 0.9; margin-bottom: 30px; }
.cta-content .btn { margin: 0 10px; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card { text-align: center; padding: 40px 25px; background: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow); transition: var(--transition); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-card__icon { width: 80px; height: 80px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: var(--background-light); border-radius: 50%; color: var(--primary-color); }
.feature-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card__text { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* Gallery */
.gallery-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 10px 25px; border: 2px solid var(--primary-color); background: transparent; color: var(--primary-color); border-radius: 30px; cursor: pointer; transition: var(--transition); font-size: 0.95rem; }
.filter-btn:hover, .filter-btn.active { background: var(--primary-color); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-grid--large { grid-template-columns: repeat(4, 1fr); }
.gallery-item { position: relative; border-radius: var(--border-radius); overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__title { color: var(--white); font-size: 1.1rem; font-weight: 600; }
.gallery-item__icon { margin-top: 10px; color: var(--white); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card__image { position: relative; height: 200px; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__content { padding: 25px; }
.blog-card__date { font-size: 0.85rem; color: var(--primary-color); margin-bottom: 10px; }
.blog-card__title { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card__title a { color: var(--secondary-color); }
.blog-card__title a:hover { color: var(--primary-color); }
.blog-card__excerpt { font-size: 0.9rem; color: var(--text-light); margin-bottom: 15px; }
.read-more { color: var(--primary-color); font-weight: 500; }

/* Page Header */
.page-header { position: relative; padding: 180px 0 100px; text-align: center; }
.page-header--small { padding: 150px 0 80px; }
.page-header__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.page-header__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay-dark); }
.page-header__content { position: relative; z-index: 10; }
.page-header h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 15px; }
.page-header p { color: var(--white); opacity: 0.9; font-size: 1.1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.breadcrumb a, .breadcrumb span { color: var(--white); opacity: 0.8; font-size: 0.95rem; }
.breadcrumb a:hover { opacity: 1; color: var(--primary-color); }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--secondary-color); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: var(--border-radius); font-size: 1rem; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-row--4 { grid-template-columns: repeat(4, 1fr); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; }
.contact-form-wrapper h2, .contact-info h2 { margin-bottom: 30px; }
.contact-info__item { display: flex; gap: 20px; margin-bottom: 25px; }
.contact-info__icon { width: 50px; height: 50px; background: var(--background-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-color); flex-shrink: 0; }
.contact-info__content h4 { margin-bottom: 5px; }
.contact-info__content p, .contact-info__content a { color: var(--text-light); margin: 0; }
.map-section { height: 450px; }
.map-section iframe { width: 100%; height: 100%; }

/* Reservation */
.reservation-wrapper { max-width: 800px; margin: 0 auto; }
.reservation-form__section { background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); margin-bottom: 30px; }
.reservation-form__section h3 { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.room-select-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.room-select-item { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border: 2px solid #eee; border-radius: var(--border-radius); cursor: pointer; transition: var(--transition); }
.room-select-item:hover, .room-select-item.selected { border-color: var(--primary-color); }
.room-select-item input { display: none; }
.room-select-item__name { font-weight: 500; }
.room-select-item__price { color: var(--primary-color); font-weight: 600; }

/* Alerts */
.alert { padding: 15px 20px; border-radius: var(--border-radius); margin-bottom: 20px; }
.alert--success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert--error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.pagination__btn, .pagination__num { padding: 10px 15px; border: 1px solid #ddd; border-radius: var(--border-radius); color: var(--text-color); transition: var(--transition); }
.pagination__num.active, .pagination__btn:hover, .pagination__num:hover { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

/* Room Detail */
.room-detail { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; }
.room-gallery__main { border-radius: var(--border-radius); overflow: hidden; margin-bottom: 15px; }
.room-gallery__main img { width: 100%; height: 400px; object-fit: cover; }
.room-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.room-gallery__thumb { border-radius: var(--border-radius); overflow: hidden; cursor: pointer; opacity: 0.7; transition: var(--transition); }
.room-gallery__thumb:hover { opacity: 1; }
.room-gallery__thumb img { width: 100%; height: 80px; object-fit: cover; }
.room-detail__price { background: var(--background-light); padding: 20px; border-radius: var(--border-radius); margin-bottom: 25px; }
.room-detail__price .price { font-size: 2rem; font-weight: 700; color: var(--primary-color); }
.room-detail__price .period { color: var(--text-light); }
.room-detail__specs { display: flex; gap: 30px; margin-bottom: 25px; }
.room-detail__specs .spec { display: flex; align-items: center; gap: 10px; }
.room-detail__specs svg { color: var(--primary-color); }
.room-detail__description { margin-bottom: 25px; }
.room-detail__description h3, .room-detail__amenities h3 { margin-bottom: 15px; }
.amenities-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.amenities-list li { display: flex; align-items: center; gap: 10px; }
.amenities-list svg { color: var(--primary-color); }

/* Footer */
.footer { background: var(--secondary-color); color: var(--white); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-grid--no-newsletter { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.footer-grid--no-newsletter .footer-col { min-width: 200px; max-width: 280px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 50px; }
.footer-col h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; position: relative; }
.footer-col h3::after { content: ''; display: block; width: 40px; height: 2px; background: var(--primary-color); margin-top: 10px; }
.footer-col p { color: rgba(255,255,255,0.7); margin-bottom: 10px; font-size: 0.95rem; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-links a:hover { color: var(--primary-color); }
.footer-contact li { display: flex; gap: 15px; margin-bottom: 15px; color: rgba(255,255,255,0.7); }
.footer-contact svg { color: var(--primary-color); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--primary-color); }
.social-links { display: flex; gap: 10px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; color: var(--white); transition: var(--transition); }
.social-links a:hover { background: var(--primary-color); }
.newsletter-form { display: flex; gap: 10px; margin-top: 15px; }
.newsletter-form input { flex: 1; padding: 12px 15px; border: none; border-radius: var(--border-radius); }
.newsletter-form .btn { flex-shrink: 0; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* Lightbox */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2000; display: none; }
.lightbox.active { display: block; }
.lightbox-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); }
.lightbox-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: 90%; max-height: 90%; text-align: center; }
.lightbox-image { max-width: 100%; max-height: 80vh; border-radius: var(--border-radius); }
.lightbox-title { color: var(--white); margin-top: 15px; font-size: 1.1rem; }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 2.5rem; cursor: pointer; z-index: 10; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border: none; color: var(--white); font-size: 1.5rem; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; transition: var(--transition); }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--primary-color); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Mobile Only Elements */
.mobile-only { display: none; }
@media (max-width: 768px) {
    .mobile-only { display: block; }
    .desktop-only { display: none; }
}

/* Touch Device Improvements */
.touch-device .btn { min-height: 44px; }
.touch-device .nav-link { min-height: 44px; display: flex; align-items: center; }
.touch-device .filter-btn { min-height: 44px; }
.touch-device .pagination__btn, .touch-device .pagination__num { min-height: 44px; min-width: 44px; }

/* Page Content */
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h2 { margin: 30px 0 15px; }
.page-content p { margin-bottom: 15px; line-height: 1.8; }
.page-content img { border-radius: var(--border-radius); margin: 20px 0; }


/* Availability Badge Styles */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
.availability-badge--full {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}
.availability-badge--last,
.availability-badge--low {
    background: #fff8e1;
    color: #f57c00;
    border: 1px solid #ffcc80;
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Room Card Badge */
.room-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.room-card__badge--full {
    background: #e74c3c;
    color: #fff;
}
.room-card__badge--last,
.room-card__badge--low {
    background: #f39c12;
    color: #fff;
    animation: pulse-badge 2s infinite;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
