/* ====== GLOBAL ====== */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #1f1f1f;
    color: white;
}

/* ====== NAVBAR ====== */
.navbar {
    background-color: #1f1f1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ====== LOGO ====== */
.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* ====== NAV LINKS ====== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
        font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
}

.nav-links a i {
    color: #d4a53f;
}

.nav-links a:hover {
    color: #d4a53f;
}

/* ====== BOOK BUTTON ====== */
.book-btn {
    background: #2a4e1b;
    color: white;
    padding: 8px 18px;
    border: 1px solid #d4a53f;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.book-btn:hover {
    background: #3e6e27;
}

/* ====== MENU ICON (MOBILE) ====== */
.menu-icon {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: #1f1f1f;
        width: 100%;
        padding: 20px 0px 20px 0px;
        border-top: 1px solid #333;
    }

    .nav-links.active {
        display: flex;
        align-items: flex-start;
    }

    .menu-icon {
        display: block;
    }

    .book-btn {
        margin-top: 10px;
    }

    .logo img {
        height: 50px;
    }

}


h2{
       font-family: 'Playfair Display', serif;
   
}
span{
       font-family: 'Open Sans', sans-serif !important;
 
}

.room-one {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    padding-top: 50px;
}

.container {
    max-width: 1400px;
    width: 100%;
    height: 540px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.6s ease-out;

}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* min-height: 600px; */
}

.image-section {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.room-image {
    width: 100%;
    height: 540px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffd700;
    font-size: 16px;
    letter-spacing: 2px;
}

.content-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(59, 59, 59, 0.978);
    /* background: linear-gradient(to bottom right, #ffffff 0%, #f8f9ff 100%); */
}

.room-title {
    font-size: 27px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0px;
    background: #d4a53f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    margin: 0px;

}

.room-description {
    font-size: 16px;
    line-height: 1.8;
    color: #d3d3d3;
    margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif !important;
    font-weight: 400; /* Regular */
}

.room-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 0px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgb(78, 77, 77);
    border: 1px solid #ffffff48;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.spec-icon {
    font-size: 22px;
}

.spec-text {
    font-size: 15px;
    font-weight: 600;
    color: #d1d1d1;
        font-family: 'Montserrat', sans-serif !important;
    font-weight: 400; /* Regular */
}

.amenities {
    margin-bottom: 10px;
}

.amenities-title {
    font-size: 20px;
    font-weight: 700;
    color: #d4a53f;
    margin-bottom: 24px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.amenity-card {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.amenity-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.amenity-icon {
    font-size: 36px;
    margin-bottom: 12px;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    filter: grayscale(0);
}

.amenity-name {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

.booknow-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button {
    height: 40px;
    width: 250px;
    border-radius: 16px;
    background-color: #d4a53f;
    border: 2px solid rgba(20, 20, 20, 0.168);
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

@media (max-width: 968px) {
    .room-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 40px 30px;
    }

    .room-title {
        font-size: 32px;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .room-image {
    width: 100%;
    height: 100%;

}
}

/* Tablet View */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        height: auto;
    }

    .content-section {
        padding: 40px 35px;
    }

    .room-title {
        font-size: 36px;
    }

    .room-description {
        font-size: 16px;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .container {
        border-radius: 20px;
        height: auto;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .image-section {
        min-height: 300px;
    }

    .image-overlay {
        font-size: 12px;
        padding: 8px 16px;
        top: 15px;
        left: 15px;
    }

    .rating {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
    }

    .stars {
        font-size: 14px;
    }

    .content-section {
        padding: 30px 20px;
    }

    .room-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .room-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .room-specs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 24px;
    }

    .spec-item {
        width: 100%;
        padding: 12px 16px;
    }

    .spec-icon {
        font-size: 18px;
    }

    .spec-text {
        font-size: 13px;
    }

    .amenities {
        margin-bottom: 24px;
    }

    .amenities-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .amenity-card {
        padding: 16px 12px;
    }

    .amenity-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .amenity-name {
        font-size: 12px;
    }

    .cta-button {
        width: 100%;
        /* padding: 16px 32px; */
        font-size: 15px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 15px;
    }

    .image-section {
        min-height: 250px;
    }

    .content-section {
        padding: 25px 18px;
    }

    .room-title {
        font-size: 24px;
        margin: 0px;
    }

    .room-description {
        font-size: 14px;
        margin-bottom: 20px;
                margin: 5px;

    }

    .room-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .spec-item {
        padding: 10px 12px;
        font-size: 13px;
        width: 130px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .amenity-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 16px;
        gap: 16px;
    }

    .amenity-icon {
        margin-bottom: 0;
    }
}


/* Desktop - Always show amenities */
.amenities-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

.toggle-icon {
    display: none;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.amenities-content {
    display: block;
}

/* Mobile View - Collapsible amenities */
@media (max-width: 768px) {
    .amenities-header {
        cursor: pointer;
        padding: 12px 16px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 16px;
        user-select: none;
    }

    .amenities-header:active {
        transform: scale(0.98);
    }

    .amenities-title {
        margin-bottom: 0;
        font-size: 18px;
        margin: 0px;
    }

    .toggle-icon {
        display: block;
        color: #667eea;
        font-weight: bold;
    }

    .toggle-icon.open {
        transform: rotate(180deg);
    }

    .amenities-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .amenities-content.show {
        max-height: 500px;
    }

    .amenities-content .room-specs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 0;
    }
}

/* Mobile View - Image on Top */
@media (max-width: 768px) {
    .room-grid {
        display: flex;
        flex-direction: column;
    }

    .content-section {
        order: 2;
    }

    .image-section {
        order: 1;
    }
}


.about-section {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('Images/All images/junior_lake_suite_studio-compressor.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.about-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-overlay h2 {
  color: #fff;
  font-size: 27px;
  letter-spacing: 2px;
  margin: 0;
      font-family: 'Playfair Display', serif;

}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    height: 120px;
  }
  .about-overlay h2 {
    font-size: 14px;
  }
  .experience-section{
    padding: 20px !important;
  }
}





.site-footer {
    background: #111;
    color: #ddd;
    padding: 70px 5% 30px;
    font-family: "Poppins", sans-serif;
}

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

/* --- Footer Columns --- */
.footer-col {
    flex: 1 1 280px;
}

.footer-about h2.footer-logo {
    color: #c3932d;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #bbb;
    line-height: 1.6;
        font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
}

/* --- Links --- */
.footer-col h3 {
    color: #c3932d;
    margin-bottom: 20px;
    font-weight: 600;
        font-family: 'Playfair Display', serif !important;

}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
        font-family: 'Montserrat', sans-serif !important;
font-weight: 400;
}

.footer-col ul li a:hover {
    color: #c3932d;
}

/* --- Contact Info --- */
.footer-contact li {
    margin-bottom: 10px;
}

.footer-contact i {
    color: #c3932d;
    margin-right: 8px;
}

/* --- Social Icons --- */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: #222;
    color: #c3932d;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #c3932d;
    color: #fff;
}

/* --- Footer Bottom --- */
.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #aaa;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social a {
        margin: 5px;
    }

    .footer-col h3 {
        margin-top: 25px;
    }
}

.footer-social-modern {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-modern a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #222;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    /* ✅ removes underline if any */

}

/* Hover colors */
.footer-social-modern a.fb:hover {
    background: #1877f2;
    box-shadow: 0 0 10px #1877f2;
}

.footer-social-modern a.ig:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    box-shadow: 0 0 10px #dd2a7b;
}

.footer-social-modern a.tw:hover {
    background: #000;
    box-shadow: 0 0 10px #000;
}

.footer-social-modern a.yt:hover {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

.footer-social-modern a.li:hover {
    background: #0077b5;
    box-shadow: 0 0 10px #0077b5;
}

.logo-footer {
    width: 180px;
}

p {
    font-family: 'Open Sans', serif !important;
    font-size: 16px !important;
}