
:root {
    --primary-gold: #D4AF37;
    --primary-dark: #0f1419;
    --secondary-dark: #1a2332;
    --light-gold: #F7E8A4;
    --text-light: #f8f9fa;
    --bg-light: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

/* Custom Navbar */
.navbar-custom {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-gold) !important;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    margin: 0 0.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/*.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}*/

.dropdown-menu {
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1rem 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.dropdown-item {
    color: var(--text-light) !important;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 0.25rem 1rem;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold) !important;
    transform: translateX(5px);
}

.btn-booking {
    background: linear-gradient(135deg, var(--primary-gold), #b8952e);
    border: none;
    padding: 12px 30px;
    margin:5px;
    font-weight: 600;
    border-radius: 50px;
    color: var(--primary-dark) !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    color: var(--primary-dark) !important;
    text-decoration: none !important;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    left: 15%;
    right: 15%;
    text-align: left;
    padding: 0;
    z-index: 10;
}

.carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.carousel-subtitle {
    font-size: 1.5rem;
    color: rgba(248, 249, 250, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50% !important;
    background: var(--primary-gold);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    filter: invert(1);
}

/* Hero Images */
#hero-slide-1 {
    background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
}

#hero-slide-2 {
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

#hero-slide-3 {
    background-image: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Section Styling */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    color: var(--primary-dark);
}

.section-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), #b8952e);
    display: block;
    margin: 1rem auto;
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), #b8952e);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-gold), #b8952e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Room Cards */
.room-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border: none;
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.room-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-body {
    padding: 2rem;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
}

.stats-item {
    text-align: center;
    padding: 2.5rem;
}

.stats-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-gold);
    position: relative;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), #b8952e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
}

.booking-form {
    background: white;
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: 0 25px 70px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 55px;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-gold);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), #b8952e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Premium button with shimmer effect */
.btn-cta::before {
    /* Creates sweep animation on hover */
}

.room-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.room-img-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-img-wrapper img {
    transform: scale(1.08);
}

/* Wi-Fi Badge */
.wifi-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 20, 25, 0.85);
    color: #f8f9fa;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.wifi-badge i {
    color: var(--primary-gold);
}


/* ===== ROOMS SECTION ===== */

.room-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.room-img-link {
    position: relative;
    display: block;
}

.room-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.wifi-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15,20,25,0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.wifi-badge i {
    color: #d4af37;
    margin-right: 6px;
}

.room-body {
    padding: 22px;
}

.room-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.room-meta {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 18px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #d4af37;
}

/* View All Rooms Button */
.view-all-rooms-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #0f1419;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(212,175,55,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-all-rooms-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(212,175,55,0.45);
    color: #0f1419;
}


/* ===== NO ROOMS NOTIFICATION ===== */

.no-rooms-box {
    background: #fff;
    border-radius: 20px;
    padding: 60px 30px;
    max-width: 600px;
    margin: 60px auto;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.no-rooms-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f1419;
    font-size: 2.2rem;
    box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}

.no-rooms-box h4 {
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.no-rooms-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== EVENTS SECTION ===== */

.event-badge {
    background: rgba(212,175,55,0.15);
    color: #d4af37;
}

.event-title-head {
    font-family: 'Playfair Display', serif;
}

.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.15);
}

.event-img {
    position: relative;
}

.event-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Event Date Tag */
.event-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15,20,25,0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.event-body {
    padding: 18px;
    text-align: center;
}

.event-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Empty state */
.no-events-box {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.no-events-box i {
    font-size: 2.2rem;
    color: #d4af37;
}


/* ===== ROOM DETAIL ===== */

.room-gallery-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.room-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.room-gallery-thumbs img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.room-gallery-thumbs img:hover {
    opacity: 1;
    transform: scale(1.03);
}

/* Info Card */
.room-detail-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 8px;
}

.room-meta {
    color: #6b7280;
    margin-bottom: 18px;
}

.room-price-lg {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.room-price-lg span {
    font-size: 0.9rem;
    color: #6b7280;
}

.room-description {
    line-height: 1.7;
    margin-top: 18px;
}

/* Amenities */
.room-amenities {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.room-amenities li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.room-amenities i {
    color: #d4af37;
    margin-right: 10px;
}

/* Remove any overlay / darkening */
.room-hero-img {
    filter: none !important;
    background: none !important;
}

/* Subtle zoom cue */
.zoomable-img {
    cursor: zoom-in;
    transition: transform 0.35s ease;
}

.zoomable-img:hover {
    transform: scale(1.01);
}

/* Modal background elegance */
.modal-backdrop.show {
    /*opacity: 0.85;
    background-color: #000;*/
}


/* ===== ROOM DETAIL: FORCE CLEAN IMAGE ===== */
#roomGallery .carousel-item::before,
#roomGallery .carousel-item::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* ===== DYNAMIC HEIGHT CAROUSEL (ROOM DETAIL) ===== */

/* Let carousel size itself by content */
#roomGallery,
#roomGallery .carousel-inner,
#roomGallery .carousel-item {
    height: auto !important;
}

/* Ensure items don’t reserve space */
#roomGallery .carousel-item {
    position: relative;
    display: block;
}

/* Images define height */
#roomGallery .carousel-item img {
    width: 100%;
    height: auto !important;
    max-height: none;
    object-fit: contain; /* IMPORTANT for mobile */
    display: block;
}

.room-hero-img {
    width: 100%;
    height: auto;
}

.thumbnail-preview {
    height: 80px;
    object-fit: cover;
}

.similar-room-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.similar-room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.room-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}

/* DESKTOP FOOD FOOTER */
.emlek-food-footer{
  background: linear-gradient(
    135deg,
    rgba(15,20,25,0.96),
    rgba(26,35,50,0.96)
  );
  border-radius: 18px;
  padding: 20px 24px;
  color: var(--text-light);
  border: 1px solid rgba(212,175,55,.15);
}


/* WELCOME TYPOGRAPHY */
.emlek-welcome{
  max-width: 720px;
}

.welcome-title{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--primary-dark);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.welcome-title span{
  color: var(--primary-gold);
  font-weight: 700;
}

.welcome-subtitle{
  font-family: 'Inter', system-ui, -apple-system;
  font-size: 0.95rem;
  letter-spacing: .3px;
  color: rgba(15,20,25,.65);
}


/* Responsive */
@media (max-width: 576px) {
    .thumbnail-preview {
        height: 65px;
    }
}
@media (max-width: 768px) {
    .carousel-caption {
        left: 10%;
        right: 10%;
    }
    
    .carousel-title {
        font-size: 2.5rem;
    }
    
    .booking-form {
        padding: 2rem;
    }
}