/* Genel yapı */
:root {
    --main-bg: #f7f5ef;
    --main-black: #111;
    --main-gold: #FFD700;
    --main-gold-dark: #bfa100;
    --main-gray: #eae6d9;
    --main-white: #fff;
}
body {
    font-family: 'Inter', sans-serif;
    background: url('/static/images/kale.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--main-black);
    min-height: 100vh;
    position: relative;
}
body:before {
    content: '';
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(247, 245, 239, 0.60);
    z-index: 0;
    pointer-events: none;
}
#app, main, .home-info, .carousel-container, .reservation-form, .login-box, .admin-dashboard, .room-card, .modal-content, .footer-container, .admin-login-container {
    position: relative;
    z-index: 1;
}
/* İçerik kutuları için arka plan ve gölge */
.home-info, .carousel-container, .reservation-form, .login-box, .admin-dashboard, .room-card, .modal-content, .footer-container, .admin-login-container {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 32px rgba(0,0,0,0.13);
    border-radius: 18px;
    border: 2px solid var(--main-gold);
}
@media (max-width: 900px) {
    .home-info, .carousel-container, .reservation-form, .login-box, .admin-dashboard, .room-card, .modal-content, .footer-container, .admin-login-container {
        border-radius: 10px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: var(--main-black);
    color: var(--main-gold);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 a {
    color: var(--main-gold);
    text-decoration: none;
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: var(--main-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: var(--main-black);
    background: var(--main-gold);
    border-radius: 6px;
    transform: scale(1.05);
}

/* Main */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background: transparent;
    color: var(--main-black);
}

/* Flash mesajlar */
.flashes {
    margin-bottom: 20px;
}

.flash {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.flash.success {
    background: #f9f6e7;
    color: var(--main-black);
    border: 1px solid var(--main-gold);
}

.flash.danger {
    background: #fff3f3;
    color: #b30000;
    border: 1px solid #ffd6d6;
}

.flash.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.flash.warning::before {
    content: "⚠️ ";
}

/* Admin Login Styles */
.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.login-box {
    background: var(--main-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    border: 1.5px solid var(--main-gold);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: var(--main-black);
    margin-bottom: 10px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.login-form input:focus {
    outline: none;
    border-color: #003366;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: var(--main-gold);
    color: var(--main-black);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.login-btn:hover {
    background: var(--main-black);
    color: var(--main-gold);
}

.login-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.login-info code {
    background-color: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

/* Admin Dashboard Styles */
.admin-dashboard {
    background: var(--main-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1.5px solid var(--main-gold);
}

.admin-header {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: var(--main-gold);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--main-black);
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-text {
    font-weight: 500;
}

.logout-btn {
    background-color: rgba(255,255,255,0.2);
    color: var(--main-gold);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: rgba(255,255,255,0.3);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    background-color: #f8f9fa;
}

.stat-card {
    background: var(--main-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1.5px solid var(--main-gold);
}

.stat-card h3 {
    margin: 0 0 10px 0;
    color: var(--main-black);
    font-size: 14px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-black);
    margin: 0;
}

.reservations-section {
    padding: 30px;
}

.reservations-section h3 {
    margin-bottom: 20px;
    color: var(--main-black);
}

.table-container {
    overflow-x: auto;
}

.reservations-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--main-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.reservations-table th {
    background-color: var(--main-white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--main-black);
    border-bottom: 2px solid #e9ecef;
}

.reservations-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.reservations-table tr:hover {
    background-color: var(--main-white);
}

.room-type {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.room-type.standart {
    background: var(--main-gold);
    color: var(--main-black);
    border-radius: 6px;
    padding: 2px 8px;
}

.room-type.deluxe {
    background: var(--main-gold);
    color: var(--main-black);
    border-radius: 6px;
    padding: 2px 8px;
}

.room-type.suit {
    background: var(--main-gold);
    color: var(--main-black);
    border-radius: 6px;
    padding: 2px 8px;
}

.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
}

.view-btn {
    background: var(--main-gold);
    color: var(--main-black);
}

.view-btn:hover {
    background: var(--main-black);
    color: var(--main-gold);
}

.no-reservations {
    text-align: center;
    padding: 40px;
    color: var(--main-black);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--main-white);
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
    border: 2px solid var(--main-gold);
}

.modal-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    align-items: center;
    justify-items: center;
}

.modal-image-wrapper {
    aspect-ratio: 1/1;
    width: 100%;
    background: var(--main-gray);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 6px;
}

.modal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: none;
    background: transparent;
    transition: box-shadow 0.2s, transform 0.2s;
}

.modal-image-wrapper img.portrait {
    min-width: 0;
    min-height: 0;
    transform: scale(1.07);
}

.modal-image-wrapper img:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    transform: scale(1.03);
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 2rem;
    color: var(--main-gold);
    cursor: pointer;
    font-weight: bold;
    z-index: 10;
    background: var(--main-black);
    border-radius: 50%;
    padding: 6px 16px;
    transition: background 0.2s;
}

.modal .close:hover {
    background: rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
    .modal-images {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    .modal-image-wrapper {
        aspect-ratio: 1/1;
        padding: 3px;
    }
    .modal-images img {
        max-height: 180px;
    }
    .modal-images img.portrait {
        max-height: 260px;
        min-width: 100px;
    }
}

@media (max-width: 600px) {
    .modal-content {
        padding: 4px;
        max-width: 99vw;
    }
    .modal-images {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .modal-image-wrapper {
        aspect-ratio: 1/1;
        padding: 1px;
    }
    .modal-images img {
        max-height: 120px;
    }
    .modal-images img.portrait {
        max-height: 160px;
        min-width: 60px;
    }
}

/* Footer */
footer, .footer-container {
    background: #111 !important;
    color: var(--main-gold) !important;
}
.footer-container {
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #111 !important;
    padding: 40px 20px 0 20px;
}
.footer-column, .footer-logo-col {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}
.footer-column h3, .footer-logo-title {
    color: var(--main-gold) !important;
}
.footer-column a, .footer-column ul, .footer-column p {
    color: #fff !important;
}
.footer-column a:hover {
    color: var(--main-gold) !important;
    background: #222 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .reservations-table {
        font-size: 14px;
    }
    
    .reservations-table th,
    .reservations-table td {
        padding: 10px;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer-column {
    flex: 1 1 250px;
    margin: 10px;
}

.footer-column h3 {
    color: var(--main-gold) !important;
    margin-top: 0;
}

.footer-column p,
.footer-column a,
.footer-column ul {
    color: #fff !important;
    font-size: 0.95rem;
    margin: 5px 0;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--main-gold) !important;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 0.7;
}

footer {
    background: #111 !important;
    color: var(--main-gold) !important;
    text-align: left;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        text-align: center;
    }
}

.rooms-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.room-card {
    background-color: var(--main-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1.5px solid var(--main-gold);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
    color: var(--main-black);
}

.room-card p {
    padding: 0 20px 15px;
    color: var(--main-black);
    line-height: 1.6;
}

.room-card ul {
    padding: 0 20px 20px;
    margin: 0;
    list-style: none;
}

.room-card ul li {
    margin-bottom: 8px;
    color: var(--main-black);
}

.room-card ul li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.reservation-form {
    background: var(--main-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    border: 1.5px solid var(--main-gold);
}

.reservation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--main-black);
}

.reservation-form input,
.reservation-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.reservation-form input:focus,
.reservation-form select:focus {
    outline: none;
    border-color: #003366;
}

.reservation-form button {
    width: 100%;
    padding: 15px;
    background: var(--main-gold);
    color: var(--main-black);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.reservation-form button:hover {
    background: var(--main-black);
    color: var(--main-gold);
}

.room-type-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-bottom: 20px;
}

.room-type-cards .room-card {
    flex: 1 1 180px;
    max-width: 220px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--main-white);
    border: 1.5px solid var(--main-gold);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 10px 8px 14px 8px;
    transition: box-shadow 0.2s, border 0.2s;
    cursor: pointer;
}

.room-type-cards .room-card img {
    width: 100%;
    max-width: 160px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.room-type-cards .room-card span {
    font-weight: 700;
    color: var(--main-black);
    font-size: 1.1rem;
}

.room-type-cards .room-card input[type="radio"] {
    display: none;
}

.room-type-cards .room-card input[type="radio"]:checked + img,
.room-type-cards .room-card:hover img {
    border: 2.5px solid var(--main-gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

@media (max-width: 700px) {
    .room-type-cards {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .room-type-cards .room-card {
        max-width: 98vw;
        min-width: 0;
        width: 100%;
    }
}

.back-home-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--main-gold);
    color: var(--main-black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    margin-top: 20px;
}

.back-home-btn:hover {
    background: var(--main-black);
    color: var(--main-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.menu-toggle .bar {
    width: 28px;
    height: 4px;
    background: var(--main-gold);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 900px) {
    .header-container {
        flex-direction: row;
        gap: 0;
    }
    nav ul {
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--main-black);
        flex-direction: column;
        width: 200px;
        align-items: flex-start;
        padding: 20px 0;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        border-radius: 0 0 10px 10px;
        display: none;
        z-index: 1001;
    }
    nav ul.open {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    nav ul li {
        width: 100%;
    }
    nav ul li a {
        display: block;
        width: 100%;
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .header-container {
        padding: 10px 8px;
    }
    main {
        padding: 0 6px;
    }
    .room-card, .login-box, .reservation-form {
        max-width: 98vw;
        padding: 10px;
    }
    .room-card img {
        height: 90px;
    }
    .reservation-form button, .login-btn, .back-home-btn {
        font-size: 1.1rem;
        padding: 12px;
    }
    .footer-container {
        padding: 20px 6px;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17,17,17,0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: background 0.2s;
}
.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: var(--main-white);
    object-fit: contain;
    margin: 0 40px;
    transition: box-shadow 0.2s;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 36px;
    font-size: 2.5rem;
    color: var(--main-gold);
    cursor: pointer;
    z-index: 10;
    background: var(--main-black);
    border-radius: 50%;
    padding: 6px 16px;
    transition: background 0.2s;
}
.lightbox-close:hover {
    background: rgba(0,0,0,0.4);
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--main-gold);
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    padding: 8px 18px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0,0,0,0.4);
}
.lightbox-prev {
    left: 16px;
}
.lightbox-next {
    right: 16px;
}
@media (max-width: 600px) {
    .lightbox img {
        max-width: 98vw;
        max-height: 60vh;
        margin: 0 2vw;
    }
    .lightbox-close {
        top: 8px;
        right: 10px;
        font-size: 2rem;
        padding: 2px 10px;
    }
    .lightbox-prev, .lightbox-next {
        font-size: 2.2rem;
        padding: 4px 10px;
    }
    .lightbox-prev {
        left: 2px;
    }
    .lightbox-next {
        right: 2px;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    height: 72px;
    margin-right: 16px;
    gap: 16px;
    text-decoration: none;
}
.logo-img {
    height: 64px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    background: var(--main-white);
    object-fit: contain;
    padding: 2px;
    display: block;
}
.logo-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--main-gold);
    margin-left: 12px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}
/* Footer özel */
.footer-logo-link {
    height: 80px;
    gap: 18px;
    margin-bottom: 8px;
}
.footer-logo-img {
    height: 72px;
    border-radius: 14px;
}
.footer-logo-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--main-gold);
    margin-left: 14px;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}
.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
@media (max-width: 600px) {
    .logo-link, .footer-logo-link {
        height: 44px;
        gap: 6px;
    }
    .logo-img, .footer-logo-img {
        height: 36px;
        border-radius: 7px;
    }
    .logo-title, .footer-logo-title {
        font-size: 1.2rem;
        margin-left: 6px;
    }
}

.home-info {
    max-width: 700px;
    margin: 36px auto 28px auto;
    background: linear-gradient(120deg, #fffbe6 0%, #f7f5ef 100%);
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    padding: 40px 32px 24px 32px;
    text-align: center;
    border: 3px solid var(--main-gold);
    position: relative;
    overflow: hidden;
}
.home-info:before {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, var(--main-gold) 0%, transparent 80%);
    opacity: 0.13;
    z-index: 0;
}
.home-info h2 {
    color: var(--main-black);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: 1px;
    z-index: 1;
    position: relative;
}
.home-info p {
    color: var(--main-black);
    font-size: 1.18rem;
    margin-bottom: 0;
    z-index: 1;
    position: relative;
}
.carousel-container {
    max-width: 800px;
    margin: 0 auto 36px auto;
    position: relative;
    background: linear-gradient(120deg, #fffbe6 0%, #f7f5ef 100%);
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    border: 3px solid var(--main-gold);
    padding: 24px 0 12px 0;
}
.carousel {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    min-height: 280px;
    align-items: center;
    justify-content: center;
    background: var(--main-gray);
}
.carousel-slide {
    min-width: 100%;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 0;
    position: absolute;
    left: 0; top: 0;
    right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.carousel-slide.active {
    opacity: 1;
    position: relative;
    z-index: 2;
    transform: scale(1.01);
}
.carousel-slide img {
    max-width: 100%;
    max-height: 380px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    object-fit: cover;
    background: var(--main-gray);
    border: 2px solid var(--main-gold);
}

.carousel-slide video {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    object-fit: cover;
    background: var(--main-gray);
    border: 2px solid var(--main-gold);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 400px; /* Dikey video için daha dar */
    max-height: 90vh;
}

.video-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.video-close:hover {
    background: rgba(255, 0, 0, 0.7);
}

#welcomeVideo {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain; /* Video'nun orijinal oranını koru */
}

/* Responsive video modal */
@media (max-width: 768px) {
    .video-modal-content {
        max-width: 350px; /* Mobilde daha da dar */
        max-height: 95vh;
    }
    
    .video-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
        width: 40px;
        height: 40px;
    }
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--main-gold);
    color: var(--main-black);
    border: none;
    border-radius: 50%;
    font-size: 2.3rem;
    padding: 8px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    opacity: 0.92;
    z-index: 10;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover {
    background: var(--main-black);
    color: var(--main-gold);
    opacity: 1;
}
.carousel-btn.prev { left: 18px; right: auto; }
.carousel-btn.next { right: 18px; left: auto; }
@media (max-width: 900px) {
    .carousel-slide img {
        max-height: 180px;
    }
    .carousel-slide video {
        height: 180px;
    }
    .carousel-container {
        max-width: 99vw;
    }
    .home-info {
        padding: 18px 4vw 10px 4vw;
        font-size: 1rem;
    }
    .carousel-btn {
        font-size: 1.5rem;
        padding: 4px 12px;
    }
    .carousel-btn.prev { left: 4px; }
    .carousel-btn.next { right: 4px; }
}
@media (max-width: 600px) {
    .home-info {
        padding: 10px 2vw 6px 2vw;
        font-size: 0.98rem;
        border-radius: 12px;
    }
    .carousel-slide img {
        max-height: 90px;
        border-radius: 7px;
    }
    .carousel-slide video {
        height: 90px;
        border-radius: 7px;
    }
    .carousel-btn {
        font-size: 1.1rem;
        padding: 2px 7px;
        top: 50%;
    }
    .carousel-btn.prev { left: 2px; }
    .carousel-btn.next { right: 2px; }
}
.reservation-header {
    text-align: center;
    margin-bottom: 18px;
}
.reservation-header h2 {
    font-size: 2.1rem;
    color: var(--main-black);
    font-weight: 900;
    margin-bottom: 6px;
}
.reservation-desc {
    color: var(--main-gold-dark);
    font-size: 1.08rem;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Admin Tab Sistemi */
.admin-nav {
    display: flex;
    background: var(--main-gray);
    border-radius: 8px;
    margin: 20px 0;
    padding: 4px;
}
.nav-tab {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    background: transparent;
    color: var(--main-black);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}
.nav-tab.active, .nav-tab:hover {
    background: var(--main-gold);
    color: var(--main-black);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
/* Fiyat Yönetimi */
.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.price-card {
    background: var(--main-white);
    border: 2px solid var(--main-gold);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.price-card h4 {
    color: var(--main-black);
    margin-bottom: 10px;
    font-size: 1.3rem;
}
.price-card .price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--main-gold);
    margin: 10px 0;
}
.price-card .description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.edit-btn, .manage-btn {
    background: var(--main-gold);
    color: var(--main-black);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.edit-btn:hover, .manage-btn:hover {
    background: var(--main-black);
    color: var(--main-gold);
}
/* Fotoğraf Yönetimi */
.images-section {
    padding: 30px;
}

.images-section h3 {
    margin-bottom: 20px;
    color: var(--main-black);
}

.image-management {
    background: var(--main-white);
    border: 2px solid var(--main-gold);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.image-management p {
    color: #666;
    margin: 15px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.image-management .manage-btn {
    display: inline-block;
    background: var(--main-gold);
    color: var(--main-black);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    margin-top: 10px;
}

.image-management .manage-btn:hover {
    background: var(--main-black);
    color: var(--main-gold);
}

/* Admin Ek Stiller */
.back-btn {
    background: var(--main-black);
    color: var(--main-gold);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.back-btn:hover {
    background: var(--main-gold);
    color: var(--main-black);
}
.price-form, .upload-form {
    background: var(--main-white);
    border: 2px solid var(--main-gold);
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    max-width: 500px;
}
.price-form .form-group, .upload-form .form-group {
    margin-bottom: 16px;
}
.price-form label, .upload-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--main-black);
}
.price-form input, .price-form select, .price-form textarea,
.upload-form input, .upload-form select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}
.price-form input:focus, .price-form select:focus, .price-form textarea:focus,
.upload-form input:focus, .upload-form select:focus {
    outline: none;
    border-color: var(--main-gold);
}
.save-btn, .upload-btn {
    background: var(--main-gold);
    color: var(--main-black);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.save-btn:hover, .upload-btn:hover {
    background: var(--main-black);
    color: var(--main-gold);
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.image-card {
    background: var(--main-white);
    border: 2px solid var(--main-gold);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.image-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.image-preview {
    position: relative;
    overflow: hidden;
}
.image-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}
.image-card:hover .image-preview img {
    transform: scale(1.05);
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.image-card:hover .image-overlay {
    opacity: 1;
}
.preview-btn {
    background: var(--main-gold);
    color: var(--main-black);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.preview-btn:hover {
    background: var(--main-black);
    color: var(--main-gold);
}
.image-info {
    padding: 15px;
}
.room-type-badge {
    background: var(--main-gold);
    color: var(--main-white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-type-badge.standart {
    background: #4CAF50;
}

.room-type-badge.deluxe {
    background: #2196F3;
}

.room-type-badge.suit {
    background: #9C27B0;
}

.filename {
    font-weight: 600;
    color: var(--main-black);
    margin: 8px 0;
    word-break: break-all;
}
.upload-date {
    font-size: 0.8rem;
    color: #666;
    margin: 4px 0;
}
.image-actions {
    padding: 0 15px 15px;
    text-align: center;
}
.delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.delete-btn:hover {
    background: #c82333;
}
.no-images {
    text-align: center;
    color: #666;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}
.no-images p {
    margin: 8px 0;
    font-size: 1rem;
}
.no-images p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
}
.file-info {
    color: #666;
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}
/* Image Preview Modal */
#imagePreviewModal .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
#imagePreviewModal img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
#imagePreviewModal .close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
#imagePreviewModal .close:hover {
    background: rgba(0,0,0,0.8);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .image-preview img {
        height: 140px;
    }
    
    .image-info {
        padding: 12px;
    }
    
    .image-actions {
        padding: 0 12px 12px;
    }
}
@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .image-preview img {
        height: 160px;
    }
    
    #imagePreviewModal .modal-content {
        max-width: 95vw;
    }
    
    #imagePreviewModal .close {
        top: -35px;
        right: 0;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* Room Price Styles */
.room-price {
    text-align: center;
    margin: 10px 0;
    padding: 8px 0;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--main-gold);
    display: block;
}

.price-label {
    font-size: 0.9rem;
    color: var(--main-black);
    font-weight: 600;
}

/* Reservation Page Price Styles */
.room-type-cards .room-card .room-name {
    font-weight: 700;
    color: var(--main-black);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.room-type-cards .room-card .room-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-gold);
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid var(--main-gold);
}

/* Total Price Section */
.total-price-section {
    background: var(--main-white);
    border: 2px solid var(--main-gold);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    border-top: 2px solid var(--main-gold);
    border-bottom: none;
    padding-top: 12px;
    margin-top: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-row.total span:last-child {
    color: var(--main-gold);
    font-size: 1.3rem;
}

.price-row span:first-child {
    color: var(--main-black);
    font-weight: 600;
}

.price-row span:last-child {
    color: var(--main-black);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-amount {
        font-size: 1.5rem;
    }
    
    .total-price-section {
        padding: 15px;
        margin: 15px 0;
    }
    
    .price-row {
        font-size: 0.95rem;
    }
    
    .price-row.total {
        font-size: 1rem;
    }
    
    .price-row.total span:last-child {
        font-size: 1.2rem;
    }
}

/* Discount Styles */
.price-display {
    text-align: center;
    margin: 10px 0;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin: 0;
    font-weight: 400;
}

.discounted-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--main-gold);
    margin: 5px 0;
}

.discount-badge {
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

/* Admin Discount Controls */
.discount-section {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--main-gold);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.discount-section h4 {
    color: var(--main-black);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--main-black);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
}

/* Room Cards with Discount */
.room-card .price-display {
    text-align: center;
    margin: 10px 0;
}

.room-card .original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin: 0;
}

.room-card .discounted-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--main-gold);
    margin: 3px 0;
}

.room-card .discount-badge {
    background: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 3px;
}

/* Reservation Page Discount Display */
.room-type-cards .room-card .price-display {
    text-align: center;
    margin: 4px 0;
}

.room-type-cards .room-card .original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin: 0;
}

.room-type-cards .room-card .discounted-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--main-gold);
    margin: 2px 0;
}

.room-type-cards .room-card .discount-badge {
    background: #ff4444;
    color: white;
    padding: 1px 4px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 2px;
}

/* Image Stats */
.image-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.image-stats .stat-item {
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--main-gold);
    border-radius: 12px;
    padding: 20px;
    min-width: 120px;
    transition: transform 0.2s;
}

.image-stats .stat-item:hover {
    transform: translateY(-2px);
}

.image-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-gold);
    margin-bottom: 5px;
}

.image-stats .stat-label {
    font-size: 0.9rem;
    color: var(--main-black);
    font-weight: 600;
}

@media (max-width: 768px) {
    .image-stats {
        gap: 15px;
    }
    
    .image-stats .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .image-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .image-stats .stat-label {
        font-size: 0.8rem;
    }
}

/* SEO Optimized Sections */
.features-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-section h2 {
    text-align: center;
    color: var(--main-black);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: var(--main-black);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-section {
    padding: 60px 20px;
    background: white;
}

.faq-section h2 {
    text-align: center;
    color: var(--main-black);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.faq-item {
    background: #f8f9fa;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid var(--main-gold);
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-item h3 {
    color: var(--main-black);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--main-gold) 0%, #ffed4e 100%);
}

.cta-button {
    display: inline-block;
    background: var(--main-black);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Design for SEO Sections */
@media (max-width: 768px) {
    .features-section {
        padding: 40px 15px;
    }
    
    .features-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .faq-item {
        padding: 15px;
    }
}

/* Admin FAQ Management Styles */
.faq-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item-admin {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-header h4 {
    margin: 0;
    color: var(--main-black);
    font-size: 1.1rem;
}

.faq-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.faq-content {
    margin-bottom: 15px;
}

.faq-content .form-group {
    margin-bottom: 15px;
}

.faq-content input,
.faq-content textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.faq-content textarea {
    resize: vertical;
    min-height: 80px;
}

.faq-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.no-faqs {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Admin Slider Management Styles */
.slider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.slider-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.slider-preview {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.slider-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-info {
    padding: 15px;
}

.slider-info h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: var(--main-black);
}

.slider-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #666;
}

.slider-actions {
    margin-top: 15px;
    text-align: right;
}

.no-slider-images {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.cancel-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.cancel-btn:hover {
    background: #5a6268;
}

/* Responsive Design for Admin Pages */
@media (max-width: 768px) {
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .faq-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .slider-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-preview {
        height: 150px;
    }
    
    .faq-meta {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .faq-item-admin {
        padding: 15px;
    }
    
    .faq-content input,
    .faq-content textarea {
        font-size: 0.85rem;
    }
    
    .slider-info {
        padding: 10px;
    }
    
    .slider-info h4 {
        font-size: 0.9rem;
    }
    
    .slider-info p {
        font-size: 0.8rem;
    }
}

/* Gelişmiş Fotoğraf Yönetimi Stilleri */
.image-stats-section {
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.stats-grid .stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--main-gold);
}

.stats-grid .stat-card h4 {
    margin: 0 0 10px 0;
    color: var(--main-black);
    font-size: 1rem;
}

.stats-grid .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-gold);
    margin: 0;
}

.quick-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.action-btn {
    background: var(--main-gold);
    color: var(--main-black);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.action-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.image-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.status-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-badge.active {
    background: #28a745;
    color: white;
}

.status-badge.inactive {
    background: #dc3545;
    color: white;
}

.category-badge {
    background: var(--main-gold);
    color: var(--main-black);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.image-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #666;
    margin: 5px 0;
}

.toggle-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background-color 0.3s;
}

.toggle-btn.active {
    background: #dc3545;
}

.toggle-btn.inactive {
    background: #28a745;
}

.toggle-btn:hover {
    opacity: 0.8;
}

/* Responsive Design for Enhanced Image Management */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .action-btn {
        text-align: center;
    }
    
    .image-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .image-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .stats-grid .stat-card {
        padding: 15px;
    }
    
    .stats-grid .stat-number {
        font-size: 1.5rem;
    }
    
    .action-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* Oda filtreleme butonları */
.room-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: var(--main-white);
    border: 2px solid var(--main-gold);
    color: var(--main-gold);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: var(--main-gold);
    color: var(--main-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.filter-btn.active {
    background: var(--main-gold);
    color: var(--main-white);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Oda fotoğrafları bölümü */
.room-images-section {
    margin-bottom: 40px;
}

.room-images-section h3 {
    color: var(--main-black);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid var(--main-gold);
    padding-bottom: 10px;
}

/* Slider fotoğrafları bölümü */
.slider-images-section {
    margin-top: 40px;
}

.slider-images-section h3 {
    color: var(--main-black);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid var(--main-gold);
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .room-filter {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .room-images-section h3,
    .slider-images-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .room-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Room Modal Styles */
.room-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.room-modal-content {
    background-color: var(--main-white);
    margin: 5% auto;
    padding: 20px;
    border: 3px solid var(--main-gold);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.room-modal-close {
    color: var(--main-black);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    transition: color 0.3s ease;
}

.room-modal-close:hover {
    color: var(--main-gold);
}

.room-modal-content h2 {
    color: var(--main-black);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--main-gold);
    padding-bottom: 10px;
}

.room-modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.room-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .room-modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 15px;
    }
    
    .room-modal-content h2 {
        font-size: 1.5rem;
    }
}

/* Arka plan fotoğrafı */
.rooms-container {
    background: url('./public/images/arka-plan.jpg') no-repeat center center/cover;
    padding: 50px 20px;
}

/* Odaların yan yana dizilmesi */
.rooms-grid {
    display: flex;
    flex-wrap: wrap; /* Taşarsa alta geçsin */
    gap: 20px; /* Odalar arası boşluk */
    justify-content: center; /* Ortala */
}

/* Tek tek oda kartları */
.room-card {
    background: rgba(255, 255, 255, 0.9); /* Hafif şeffaf beyaz */
    border-radius: 10px;
    overflow: hidden;
    width: 300px; /* Hepsi eşit boyda */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Oda resmi */
.room-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

