/* --- GLOBAL STYLES --- */
body {
    font-family: 'Roboto', sans-serif;
    color: #555;
    overflow-x: hidden;
    background: #f8f8f8;
}
h1, h2, h3, h4, h5, h6, .nav-link, .btn {
    font-family: 'Montserrat', sans-serif;
}

/* Color Variables */
:root {
    --primary-gold: #ffb400; /* Matching the yellow/orange */
    --primary-blue: #007bff; /* Matching the blue button */
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --footer-bg: #2c2c2c;
}

/* --- HEADER SECTION --- */
.header-wrapper {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
}

/* Carousel Background */
#heroCarousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.carousel-item, .carousel-item img {
    height: 100vh;
    min-height: 700px;
    object-fit: cover;
}

/* Overlay Content */
.header-overlay {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgb(0 0 0 / 21%);
}

/* Navigation */
.navbar {
    padding-top: 20px;
}
.navbar-brand {
    display: none; /* Logo is centered manually below */
}
.nav-link {
    color: white !important;
    font-weight: 500;
    margin-left: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.social-top {
   display: flex !important;
}
.social-top a {
    color: white;
    margin-left: 10px;
}

.social-top li{
    list-style: none;
}

/* Center Logo & Features */
.center-hero-content {
    text-align: center;
    color: white;
    margin-top: -50px; /* Visual adjustment */
}
.main-logo-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}
.hotel-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}
.hotel-subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 10px;
    position: relative;
    display: inline-block;
}
.hotel-subtitle::before, .hotel-subtitle::after {
    content: "—";
    color: white;
    margin: 0 10px;
}

/* Feature Icons (Suites, Breakfast...) */
.feature-icons-row {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 100px;
}
.feature-item {
    text-align: center;
    color: white;
    position: relative;
}

.feature-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background: rgb(0 0 0 / 13%);
    font-size: 1.2rem;
    color: #fff;
}
.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Booking Form Bar */
.booking-bar {
    background: white;
    padding: 20px;
    margin-bottom: 50px; /* Space from bottom */
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.booking-form .form-control, .booking-form .form-select {
    padding: 10px 12px;
      border: none;
      border-radius: 4px;
      font-size: 13px;
      min-width: 120px;
      background-color: white;
      color: #333;
      outline: none;
}
.form-select:focus{
    box-shadow: none !important;
}
.form-control:focus{
    box-shadow: none !important;
}

/*.booking-form .form-control, .booking-form .form-select select:focus{
outline: none !important; 
box-shadow: none !important;
}*/
.booking-form label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0;
}
.input-group-text {
    background: none;
    border: none;
    border-bottom: 1px solid #ddd;
    color: var(--primary-gold);
}
.btn-check-avail {
    background-color: var(--primary-gold);
    color: white;
    font-weight: 700;
    border: none;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- MAIN SECTION (ROOMS) --- */
.section-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.section-title p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-size: 24px;
}
.zigzag-separator {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Room Cards */
.rc-col {
  margin-bottom: 50px;
}

.room-card {
    border: none;
    box-shadow: 0px 0px 20px 4px rgb(0, 0, 0, 0.2);
    transition: transform 0.3s;
    background: #fff;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.room-card:hover {
    transform: translateY(-5px);
}
.room-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-card-body {
    padding: 20px;
    display: flex;
    flex: 1;
}
.room-info {
    flex: 1;
    padding-right: 15px;
    border-right: 1px solid #eee;
}
.room-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}
.room-price-tag {
    font-weight: 700;
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}
.room-desc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}
.view-detail-link {
    color: var(--primary-gold);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.view-detail-link:hover {
    color: #e09e00;
}

/* Side Icons in Card */
.room-features-col {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-left: 10px;
}
.feature-mini {
    text-align: center;
    margin-bottom: 10px;
}
.feature-mini i {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2px;
}
.feature-mini span {
    display: block;
    font-size: 0.5rem;
    text-transform: uppercase;
    color: #999;
    line-height: 1;
}

/* Card Footer Buttons */
.card-footer-custom {
    display: flex;
}
.btn-room-action {
    flex: 1;
    background-color: var(--primary-gold);
    color: white;
    border: none;
    padding: 15px 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0;
}
.btn-room-action:hover {
    background-color: #e09e00;
    color: white;
}
.btn-room-icon {
    width: 60px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 0px 10px 0px 0px;
}

/* --- FOOTER --- */
footer {
    background-color: var(--footer-bg);
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}
.footer-logo-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}
.footer-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.footer-subtitle {
    color: #ccc;
    margin-top: 5px;
    letter-spacing: 4px;
}
.footer-subtitle::before, .footer-subtitle::after {
    content: "—";
    margin: 0 10px;
}
.social-icons {
    margin-top: 30px;
}
.social-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border: 1px solid #777;
    border-radius: 50%;
    color: #ccc;
    margin: 0 5px;
    transition: 0.3s;
}
.social-circle:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.footer-contact{
    display: flex;
    justify-content: space-evenly;
    text-align: left;
    margin-top: 50px;
    color: #d5caca;
}
.footer-contact div{
  display: flex;
    gap: 10px;
    padding-bottom: 15px;
}
.footer-contact div i{
  padding-top: 4px;
}

.price-col{
    display: flex;
    gap: 34px;
}
.price-slash{
  text-decoration: line-through;
    color: #dc3545 !important;
}



/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
  .header-overlay {
    background: unset;
  }
    /* Mobile Nav */
    .navbar-toggler {
        border-color: rgba(255,255,255,0.5);
        margin-left: auto; /* Push hamburger to right */
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
    .navbar-collapse {
        background: rgb(0 0 0 / 50%);
        padding: 10px;
        text-align: center;
    }
    .social-top{
      display: none !important;
    }
    .logo_wrapper{
  margin-top: 180px;
}
    /* Header Adjustments */
    .header-wrapper, .carousel-item {
        height: auto;
        min-height: 100vh;
    }
    .hotel-title {
        font-size: 2rem;
    }
    
    /* Hiding Elements */
    .feature-icons-row {
        display: none !important;
    }
    .booking-bar {
        display: none !important;
    }

    /* Card Stacking handled by Bootstrap Grid (col-md-4 -> col-12) */
    
    .footer-contact{
    flex-direction: column;
    }
}
