/*Root element*/
:root{
    box-sizing: border-box;
    scroll-behavior: smooth;

    --ff-lora: "Lora", serif;
    --fs-paragraphs: calc(0.8rem + 0.35vw);
    --fs-links-btns: calc(0.65rem + 0.5vw);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}


body, html {
    overflow-x: hidden; 
    width: 100%;
}

/*Navigation Bar*/
.navBar {
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 70px !important;
    z-index: 9999;
    background-color: #713600;
}

.navBar img{
    width: 120px;
    height: auto;
    cursor: pointer;
}

.navLinks{
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.navLinks li{
    margin: 0 8px;
    position: relative;
    list-style: none;
}

.navLinks li a{
    cursor: pointer;
    padding: 5px 0;
    line-height: 1.2;
    color: black; 
    text-decoration: none
}

.navLinks li a:hover{
    border-bottom: 0.125rem solid whitesmoke;
}

.navLinks li.dropdown-parent {
    position: relative;
}

/* Hide the dropdown menu by default */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #713600;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
}

.dropdown-menu li {
    width: 100%;
    margin: 0 !important;
}

.dropdown-menu li a {
    color: white !important;
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    text-align: left;
}

.dropdown-menu li a:hover {
    background-color: #944c18;
    border-bottom: none !important;
}

.dropdown-parent:hover .dropdown-menu {
    display: block;
}


/* Head */
.hero {
   background: url('../img/hotelSeriWarisan.jpg') no-repeat center center/cover;
   height: 100vh;
   color: #fff;
   position: relative;
   padding-top: 0.938rem;
}


.hero .content {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   height: 100%;
   padding: 0 1.25rem;
   line-height: 1.4;
}

.hero .content h1 {
   font-size: 3.25rem;
   font-weight: 450;
}


.hero .content p {
   font-size: 1.375rem;
}

.hero .content .btn {
   margin-top: 1.25rem;
}

.hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%; 
   background: rgba(0, 0, 0, 0.4);
}

.hero * {
   z-index: 10;
}

/* ------------------------ */
/* MAINPAGE HEADER LAYOUT  */
/* ---------------------- */

.mainpage-header {
    position: relative;
    height: 70vh; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Internal content wrapper */
.mainpage-content {
    z-index: 10;
    padding: 0 20px;
}

.mainpage-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem); 
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.mainpage-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ---------------------------------- */
/* SUBPAGE HEADER LAYOUT (UNIVERSA)  */
/* -------------------------------- */

.subpage-header {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    padding: 50px 20px 30px 20px;
    text-align: center;
}

.subpage-header h1{
    font-size: clamp(3rem, 8vw, 4.5rem); 
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: black;
    padding-bottom: 0;
}

.subpage-header p {
    font-size: clamp(1.5rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: black;
    padding-top: 0;
}

/* -------------------------- */
/* LIGHTBOX IMAGE UNIVERSAL  */
/* ------------------------ */

/* Lightbox Background */
.lightbox {
    display: none; 
    position: fixed;
    z-index: 10000; 
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    cursor: zoom-out;
}

/* Lightbox Image */
.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* Close Button */
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Make images look clickable */
.room-photo{
    cursor: pointer;
    transition: 0.3s;
}

.room-photo:hover, .plan-photo:hover {
    opacity: 0.9;
}

/* --------------------- */
/* SPECIFIC BACKGROUND  */
/* ------------------- */
.bg-dining{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../img/diningHeader2.JPG') no-repeat center center/cover;
}

.bg-facilities{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../img/pool1.jpg') no-repeat center center/cover;
}

.bg-event{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../img/meetingRoom.jpg') no-repeat center center/cover;
}

.bg-room{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../img/roomHeader.jpg') no-repeat center center/cover;
}

/* ---------------- */
/* INDEX.HTML CSS  */
/* -------------- */

/* --- ABOUT HOMEPAGE --- */
.about {
    text-align: center;
    padding: 100px 20px;
}

.about header,
.about p{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about header h3 {
   font-family: serif;
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: whitesmoke;
}

.about p {
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
    color: whitesmoke;
    font-size: 1.2rem;
}

/* Hotel Preview Styles */
.hotelPic {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hotelPic img {
    border-radius: 6px; 
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* --- ADDITIONAL INFO ICONS --- */
.icon-wrapper {
    background-color: white;
    width: 100%;
}

.icon-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    gap: 20px; 
    text-align: center;
    flex-wrap: wrap; 
}

.flexIcons {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.flexIcons i {
    font-size: 3.5rem; 
    margin-bottom: 10px; 
    color: #df6711;
}

.flexIcons h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 700;
}

.flexIcons p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555; 
}

/* Book Now Button Styles */
.content .btn-custom {
    position: relative;
    background-color: transparent;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    font-size: var(--fs-links-btns);
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

/* Bottom Line */
.content .btn-custom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.content .btn-custom::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: 
        border-right-color 0.1s linear, 
        border-top-color 0.1s linear, 
        border-left-color 0.1s linear;
    transition-delay: 0.3s, 0.2s, 0.1s; 
}


.content .btn-custom:hover::after {
    border-right-color: white;
    border-top-color: white;
    border-left-color: white;
    transition-delay: 0.2s, 0.3s, 0.4s;
}

.content .btn-custom:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- ROOMS & SUITES SECTION STYLES --- */
.roomInfo {
    padding: 100px 30px 5px 20px; 
    color: whitesmoke;
}

.roomInfo > div:first-child {
    text-align: center; 
    margin-bottom: 30px;
}

.roomInfo h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0;
    letter-spacing: 2px;
    font-family: serif;
}

/*Make the Link fill the entire card */
.card-link-wrapper {
    text-decoration: none !important;
    display: block;
    height: 100%;
    color: inherit;
}

.roomInfo .card {
    border: none;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.roomInfo .card:hover {
    transform: translateY(-5px);
}

/* Hover Overlay */
.roomInfo .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; 
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
}

/* "VIEW MORE" Text */
.view-more-text {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.roomInfo .card:hover .card-overlay {
    opacity: 1; 
}

.roomInfo .card img {
    height: 300px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.roomInfo .card:hover img {
    filter: brightness(0.5); 
}

.roomInfo .card-body {
    padding: 40px 25px;
    text-align: center; 
}

.roomInfo .card-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #df6711;
    font-weight: 600;
}

.roomInfo .card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
}

/* Guest Experience Section */
.guest-experience {
  padding: 40px 20px;
  color: whitesmoke;
  overflow: hidden;
}

.guest-experience .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

#guestCarousel .carousel-item {
    padding: 0 60px; 
}

/* Testimonial Card */
.testimonial-card {
    display: flex;
    background-color: #c8681e;
    padding: 10px 70px;
    border-radius: 8px;
    max-width: 1000px;
    min-height: 250px;
    margin: 10px auto;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    justify-content: center;
}

.testimonial-card .quote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.stars {
  color: gold;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Carousel Buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* --- EVENTS & MEETINGS (BANQUET) SECTION --- */
.banquet-panels {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
}

.panels-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 25px;
    color: white;
}

.panels-header h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: serif;
}

.panels-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.slab-section{
    padding-bottom: 120px;
}

.slab-container {
    display: flex;
    width: 100%;
    height: 500px;
    overflow: hidden;
    gap: 0;
    padding: 0 50px;
}

.slab-item {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: flex 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
                background-size 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    display: flex;
    align-items: flex-end;
    border-right: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    cursor: default;
}

.slab-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 1.5s ease-in-out;
}

.slab-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: white;
    width: 100%;
    transform: translateY(30px);
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slab-content h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.slab-content p, .slab-btn {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slab-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    border: 1px solid white;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.slab-btn:hover {
    background-color: white;
    color: #813f0d;
}

.slab-item:hover {
    flex: 2.5; 
}

.slab-item:hover .slab-overlay {
    background: rgba(129, 63, 13, 0.6);
}

.slab-item:hover .slab-content {
    transform: translateY(0);
}

.slab-item:hover p, .slab-item:hover .slab-btn {
    opacity: 1;
}

/* ---------------- */
/* DINING.HTML CSS  */
/* ---------------- */
/* --- DINE AND DRINKS LAYOUT --- */
.dining-name{
    margin-top: 10px;
    padding-bottom: 25px;
    text-align: center;
}
 
.dining-name h2{
    font-family: "WindSong", cursive;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: black;
}

.dining-gallery {
    padding: 0 0 5px 0;
    width: 100%;
}

.gallery-wrapper {
    position: relative;
    max-width: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.gallery-container {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 50px;
    padding-bottom: 20px;
    cursor: default;
    overflow-x: hidden;

    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */

    /* Prevent text/image selection highlighting */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* IE 10 and Edge */
    user-select: none;         /* Standard syntax */
    
    /* Specifically for mobile to prevent the long-press copy image menu */
    -webkit-touch-callout: none;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-container:active {
    cursor: grabbing;
}

.gallery-item {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.133);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Prevents image dragging from breaking custom scroll */

    /* Prevents the browser from trying to drag the image*/
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Navigation Buttons */
.gallery-btn {
    background: rgba(255, 255, 255, 0.449);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: background 0.3s;
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.left-btn { left: 10px; }
.right-btn { right: 10px; }

/* --- DINE AND DRINKS CONTENT --- */
.diningAbout {
    text-align: center;
    padding: 80px 20px;
    color: #444;
    padding-top: 35px;
    padding-bottom: 100px;
}

.diningAbout p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center; 
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.diningOperation {
    width: 100%;
    background-color: #A6571A;
    padding: 40px 0; 
    text-align: center;
}

.diningOperation caption{
    color: whitesmoke;
    text-align: left;
    padding-top: 0;
}

.operation-container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 20px;
}

.diningOperation td{
    font-size: 1.1rem;
}

.diningOperation h2{
    font-size: 2.5rem;
    padding: 20px 5px;
    color: white;
    letter-spacing: 2px;
    font-family: serif;
}

.diningOperation .table {
    --bs-table-accent-bg: transparent !important;
    background-color: transparent !important;
    color: white;
    border-collapse: collapse;
}

.diningOperation thead th {
    background-color: #3d200a !important; 
    color: white;
    padding: 15px !important;
    border: none;
}

.diningOperation tbody {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.diningOperation tbody td {
    background-color: transparent !important;
    color: whitesmoke;
    padding: 30px 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --------------------- */
/* FACILITIES.HTML CSS  */
/* ------------------- */
/* --- FACILITY LAYOUT --- */
.facility-content {
    padding: 80px 20px;
    background-color: #ffffff; 
}

.facility-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.facility-grid h2 {
    font-size: 1.8rem;
    color: #444;
    letter-spacing: 1.6px;
    text-align: center;
}

.facility-grid p {
    text-align: center;
    margin: 0 auto;
    color: #444;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 620px;
    padding-bottom: 25px;
}

.facility-grid h6 {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 20px;
}

.facility-grid a {
    color: #A6571A;
    font-size: 1.1rem;
    font-weight: 600;
}

.facility-grid a:hover {
    color: #713600;
    border-bottom: 2px solid #A6571A;
}

.facility-card {
    display: flex;
    justify-content: center;
}

.facility-card img {
    width: 400px;
    height: 400px; 
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ------------------------------ */
/* POOL-FACILITY & GYM-FACILITY  */
/* ---------------------------- */
/* --- POOL & GYM FACILITY LAYOUT --- */
.facility-header-content h1 {
    font-size: clamp(3rem, 8vw, 4.5rem); 
    font-weight: 700;
    letter-spacing: 5px;
    color: black;
    margin-bottom: 0;
}

.facility-header-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #A6571A;
}

.facility-details {
    padding-bottom: 60px;
}

.facility-description {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 0;
}

.facility-description p{
    line-height: 1.8;
    font-size: 1.2rem;
    color: #444;
}

.facility-information {
    background-color: #99500b;
    padding: 70px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.facility-info-wrap {
    text-align: left;
    color: whitesmoke;
    max-width: 900px;
}

.facility-info-wrap h4 {
    font-size: clamp(1.2rem, 4vw, 1.8rem); 
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-family: serif;
}

.facility-info-wrap p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.8;
    margin-top: 18px;
    margin-bottom: 0;
}

.facility-info-wrap p + p {
    margin-top: 2px; 
}

/* --- GALLERY LAYOUT --- */
.facility-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr; /* 2 parts left, 1.2 parts right */
    gap: 15px;
    max-width: 1000px; /* Increased width to accommodate 3 photos */
    margin: 0 auto 40px auto;
}

.facility-gallery-grid img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-image img {
    height: 415px;
}

.side-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-images img {
    height: 200px;
}

/* -------------------- */
/* PROMOTION.HTML CSS  */
/* ------------------ */
.promo-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 25px;
    border: 2px solid #813f0d;
    background: transparent;
    color: #813f0d;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.tab-btn.active, .tab-btn:hover {
    background: #813f0d;
    color: white;
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    padding-bottom: 120px;
    width: 100%;
}

.promo-item {
    display: block;
    transition: all 0.4s ease;
}

.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding-bottom: 10px;
    cursor: pointer;
}

.promo-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.promo-card:hover img {
    cursor: pointer;
}

.promo-overlay h3{
    padding: 15px 7px 0 7px;
    letter-spacing: 2px;
    font-size: 1.3rem;
    text-align: center;
    
}

.promo-card:hover::after {
    opacity: 1;
}

.promo-overlay small {
    font-size: 0.8rem;
    color: #813f0d;
    font-style: italic;
}

/* Hide logic for filtering */
.promo-item.hide {
    display: none;
}

.promo-item.show {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* ---------------------------------- */
/* --- LOCATION PAGE: MAP SECTION --- */
/* ---------------------------------- */

.location-map {
    padding: 50px 0;
    width: 100%;
}

/* Header Address */
.location-address {
    display: flex;
    text-align: left;
    gap: 10px;
    margin-bottom: 20px;
}

.location-icon i {
    font-size: 1.3rem; 
    color: #813f0d;
}

.location-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/*Three-Column Row */
.location-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

/*GPS Icon Bar (Small & Tight to the map) */
.icon-bar {
    flex: 0 0 auto;
    width: 60px;
    margin-top: 35px;
    margin-left: 10px;
}

.icon-bar h5{
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #813f0d;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 10px;
    margin-top: 14px;
}

.direction-image {
    display: flex;
    flex-direction: row; 
    gap: 7px;
}

.direction-image img {
    width: 50px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.direction-image img:hover {
    transform: scale(1.1);
}

/* Location Address */
.map-row{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsive Map */
.map-col {
    flex: 2;
    min-width: 300px;
}

.map-responsive {
    overflow: hidden;
    position: relative;
    width: 100%;           
    height: 450px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Directions Accordion */
.ways-col {
    flex: 1.5;
    min-width: 300px;
}

.ways-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #813f0d;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 10px;
}

.acc-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.acc-header {
    padding: 15px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: 0.3s;
}

.acc-header:hover {
    background: #eee;
}

.acc-body {
    padding: 0 15px;
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.acc-item.active .acc-body {
    max-height: 200px; 
    padding: 15px;
}

.acc-item.active .acc-header i {
    transform: rotate(180deg);
}

/* --------------------------------------- */
/* --- LOCATION PAGE: NEARBY LANDMARKS --- */
/* --------------------------------------- */

.location-landmark{
    display: flex;
    gap: 80px;
    color: white;
    flex-direction: row;
    background-color: #813f0d;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
}

.location-landmark-text{
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: center;
    height: auto;
}

.location-landmark-text h4{
    font-size: 1.3rem;
    font-weight: 540;
    color: white;
    margin: 0;
    margin-bottom: 0;
}

.location-landmark-text img{
    max-width: 245px;
    height: auto;
    display: block;
    cursor: pointer;
    margin-bottom: 0;
}

.landmark-terminal, .landmark-hospital, 
.landmark-museum, .landmark-garden, 
.landmark-zoo, .landmark-atv{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.location-landmark i {
    font-size: 2rem; 
    width: 40px;    
    text-align: center;
    color: #f8f9fa;  
}

.location-landmark p {
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.location-landmark a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none; 
    color: white;
}

.location-landmark a:hover {
    color: #f2b179;
}

/* --------------------------- */
/* ------- ROOMS PAGE ------- */
/* ------------------------- */
.room-interface {
    padding: 60px 0;
    background-color: white;
}

.room-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    gap: 40px;
    overflow: hidden;
}

.room-image {
    flex: 1;
}

.room-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: block;
}

.room-details {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-details h3 {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.room-specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.room-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-specs i {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.btn-book {
    background-color: #a66d6d;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-book:hover {
    background-color: #8e5a5a;
}

/* --- SUBROOM FACILITY LAYOUT --- */
/* ------ SUBROOM HEADER ----- */
.subRoom-header {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    padding: 50px 20px 30px 20px;
    text-align: center;
}

.subRoom-header .facility-header-content h1 {
    font-size: clamp(3rem, 8vw, 4.5rem); 
    font-weight: 700;
    letter-spacing: 5px;
    color: black;
    margin-bottom: 0;
}

.subRoom-header .facility-header-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2.4px;
    color: #A6571A;
    max-width: 960px;
}

/* ------ GALLERY CAROUSEL ----- */
.room-gallery-sync {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main Big Picture */
.main-display-container {
    width: 90%;
    max-width: 1000px;
    height: 620px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-display-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail Carousel */
.gallery-carousel-wrapper {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    gap: 15px;
}

.thumbnail-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 7px 0;
    margin: 0 auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.thumbnail-container::-webkit-scrollbar { 
    display: none; 
}

.thumb-item {
    flex: 0 0 calc(25% - 12px); /* Shows 4 pics at a time */
    height: 120px;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumb-item.active, .thumb-item:hover {
    opacity: 1;
    border-color: #99500b;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #444;
}

/* Sub Room Specification */
.subRoom-specs {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 20px;
    background-color:#99500b;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 25px 10px;
}

.subRoom-specs span{
    color: whitesmoke;
}

.subRoom-wrap{
    background-color: #E5E4E2;
    padding: 60px 10px;
    text-align: center;
}

/* Headings Styling */
.features-header h3, 
.amenities-header h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 850;
    color: #444;
}

/* Features Section */
.features-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0 50px 0;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

.feature-wrap{
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-wrap h6{
    font-weight: 600;
    font-size: 1.3rem;
    color: #555;
    margin: 0;
    letter-spacing: 0.5px;
}

.feature-wrap span{
    font-size: 2.2rem;
}

/* Amenities Section */
.subRoom-amenities {
    max-width: 900px;
    margin: 0 auto;
}

.amenities-header h3{
    margin-top: 30px;
}

.amenities-content h6 {
    font-size: 1.3rem;
    line-height: 2;
    color: #555;
    font-weight: 500;
    word-spacing: 5px;
}

/* ------------------------------- */
/* --- EVENTS AND MEEING PAGE --- */
/* ----------------------------- */
.event-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 120px;
}

.event-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    text-decoration: none !important;
    border-radius: 8px;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(70%) grayscale(30%);
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: white;
    z-index: 2;
}

.event-card-content h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.event-card-content p {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s all ease;
}

.event-link-text {
    margin-top: 15px;
    font-weight: bold;
    color: #f2b179;
    opacity: 0;
    transition: 0.4s all ease;
}

/* Hover Effects */
.event-card:hover img {
    transform: scale(1.1);
    filter: brightness(100%) grayscale(0%);
}

.event-card:hover .event-card-content p,
.event-card:hover .event-link-text {
    opacity: 1;
    transform: translateY(0);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(129, 63, 13, 0.9));
    z-index: 1;
}

.event-intro h2 {
    color: #333;
    font-weight: 400;
}

.event-intro p {
    line-height: 1.8;
}

.event-intro {
    animation: fadeIn 1.2s ease-in-out;
}

.smallHeader-subIntro{
    color: #813f0d; 
    letter-spacing: 2px; 
    font-weight: bold;
}

.title-subIntro{
    font-family: serif;
}

/*SubRoom*/
.event-description {
    max-width: 850px;
    margin: 0 auto;
    padding-bottom: 0;
}

.event-description p{
    line-height: 1.8;
    font-size: 1.2rem;
    color: #444;
    text-align: justify;
}

.event-contact {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 90px;
}

.event-contactDetails {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-left: 0;
}

.event-contactDetails{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 15px;
    margin-left: 75px;
}

.event-contactDetails h4{
    font-size: 1.05rem;
    color: #df6711;
}

.event-contactDetails i{
    color: #df6711;
}

.subroom-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.room-photo {
    max-width: 1100px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.subroom-content h3{
    color: black;
    font-size: 1.7rem;
    font-weight: 650;
    padding-bottom: 10px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 10px;
}

.subroom-img {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

/* -------------SEMINAR PAGE ----------- */
.seminar-rooms{
    display: flex;
    flex-direction: row;
    gap: 70px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.seminar-rooms a{
    color: #A6571A;
    letter-spacing: 2px;
}

.seminar-rooms a:hover{
    color: #713600;
    text-decoration: underline;
}

.seminar-content{
    padding-bottom: 60px !important;
}

.seminar-content .event-contact{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Scroll Up Buttons */
#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #813f0d;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s, transform 0.3s;
}

#backToTop:hover {
    background-color: #df6711;
    transform: translateY(-5px);
}

/* --- Footer --- */
.site-footer {
    background-color: #2d2d2d; 
    color: whitesmoke;
    padding-top: 30px;
}

.site-footer h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #df6711; 
}

.footer-contact-list, .footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-links-list a {
    color: whitesmoke;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 2px 0;
    font-size: 0.9rem;
    text-align: left;
}

.footer-links-list a:hover {
    color: #A6571A;;
}

.footer-contact-list li i {
    color: #df6711; 
    width: 20px; 
    text-align: center;
}

.footer-email {
    color: whitesmoke;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #df6711;
}

/* Social Icons */
.social-icons a {
    color: whitesmoke;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #df6711;
}

.social-icons a i {
    font-size: 1.5rem;
}

/* Horizontal Rule (Divider) */
.site-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-text {
    font-size: 0.85rem; 
    opacity: 0.7;
}

/* ================================= */
/* ----- TERMS AND CONDITIONS ----- */
/* =============================== */
.terms_content{
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 120px;
}

.content_wrap {
    width: 80%;              
    max-width: 1000px;
    padding: 30px 0;
}

.terms_content h4{
    font-size: 1.2rem;
}

.terms_content p, .terms_content h4 {
    text-align: justify;
    color: white;
}
