:root {
    --accent-color: #6B7B4C;
    --bs-primary: #6B7B4C;
    --bs-primary-rgb: 107, 123, 76;
}

.auth-container .btn.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color, #fff);
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.auth-container .btn.btn-primary:hover,
.auth-container .btn.btn-primary:focus {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color, #fff);
    transform: translateY(-1px);
}

/* Room Card Styles */
.room-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.room-image-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.room-badge {
    padding: 5px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.room-badge.suite { background: #E67E22; }
.room-badge.deluxe { background: #9B59B6; }
.room-badge.popular { background: #2ECC71; }

.room-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255,255,255,0.95);
    padding: 8px 15px;
    border-radius: 8px;
    z-index: 10;
    font-weight: 700;
    color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.room-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.room-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #eee;
}

.feature-tag i {
    color: var(--accent-color, #e67e22);
}

.room-desc {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.room-action {
    margin-top: auto;
}

.btn-book {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--accent-color, #e67e22);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-book:hover {
    background: var(--heading-color, #2c3e50);
    color: white;
    transform: translateY(-2px);
}

/* Swiper Navigation Customization */
.room-image-slider .swiper-button-next,
.room-image-slider .swiper-button-prev {
    color: white;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    backdrop-filter: blur(2px);
}

.room-image-slider .swiper-button-next::after,
.room-image-slider .swiper-button-prev::after {
    font-size: 14px;
    font-weight: bold;
}

/* Main Room List Slider Navigation */
.room-list-next,
.room-list-prev {
    color: var(--accent-color, #e67e22) !important;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.room-list-next:hover,
.room-list-prev:hover {
    background: var(--accent-color, #e67e22);
    color: #fff !important;
    transform: scale(1.1);
}

.room-list-next::after,
.room-list-prev::after {
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .room-list-next,
    .room-list-prev {
        display: none; /* Hide external navigation on mobile/tablet where swipe is intuitive */
    }
}

/* Ensure all slides have equal height */
.rooms-list-slider .swiper-slide {
    height: auto;
    display: flex; /* Ensure the card inside can take full height */
}

/* Ensure the card takes full height of the slide */
.rooms-list-slider .swiper-slide .room-card {
    height: 100%;
    width: 100%;
}

/* Room List Slider Pagination Spacing */
.rooms-list-slider {
    padding-bottom: 50px; /* Space for pagination dots */
}

.rooms-list-slider .swiper-pagination {
    bottom: 0 !important; /* Position dots at the very bottom */
}

/* Gallery Filters */
.gallery-filters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    color: #444444;
    transition: all 0.3s;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #fff;
}

.gallery-filters li:hover,
.gallery-filters li.filter-active {
    background: var(--accent-color, #e67e22);
    color: #fff;
    border-color: var(--accent-color, #e67e22);
}

.gallery-item-col.d-none {
    display: none !important;
}

/* Animation for filter */
.gallery-item-col {
    animation-duration: 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  animation-name: fadeIn;
}

.animate__animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

/* Gallery Slider Styles */
.gallery-slider {
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.gallery-item-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.gallery-img-wrapper {
    position: relative;
    height: 250px; /* Sabit yükseklik */
    overflow: hidden;
}
.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kırpmadan doldur */
    transition: transform 0.5s ease;
}

/* Reservation Results Styles - Horizontal List */
#reservation-results {
    transition: all 0.5s ease;
}

.room-result-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.room-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.room-result-card .badge {
    font-size: 0.85rem;
    padding: 8px 15px;
    border-radius: 0 0 10px 0; /* Sol üst köşe için stil */
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
}

.room-result-card img {
    transition: transform 0.5s ease;
    object-fit: cover;
}

.room-result-card:hover img {
    transform: scale(1.05);
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 767px) {
    .room-result-card .row > div:first-child {
        height: 200px; /* Mobil için sabit resim yüksekliği */
        overflow: hidden;
    }
    
    .room-result-card .badge {
        border-radius: 0 0 10px 0;
    }
}

/* Contact Section Styles */
.contact-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.contact-card .icon-box {
    transition: all 0.3s ease;
}

.contact-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--accent-color, #e67e22) !important;
    color: white !important;
}

.contact-form-card {
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-form-card:hover {
    transform: translateY(-5px);
}

.contact-form-card .form-control {
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    background-color: #fff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-send-message {
    background: linear-gradient(45deg, var(--accent-color, #e67e22), #f39c12);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4) !important;
    background: linear-gradient(45deg, #d35400, #e67e22);
}

.btn-send-message i {
    transition: transform 0.3s ease;
}

.btn-send-message:hover i {
    transform: translateX(5px) scale(1.2);
}

.map-wrapper iframe {
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0);
}
