/**
* Font
*/
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* ============================================
   GLOBAL
   ============================================ */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background-color: #DAB86B;
    color: #1d1c1c;
}

a {
    transition: all 0.3s ease;
}

/* ============================================
   NAVBAR & HEADER
   ============================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.border-header {
    width: 100%;
    height: 4px;
    background-image: linear-gradient(90deg, #c0943c, #fdfbae, #c0943c);
    box-shadow: 0 2px 10px rgba(218, 184, 107, 0.3);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-brand-border {
    border: 1px solid #746134;
}

.border-warning {
    border-color: #746134;
}

.bg-dark-transparent {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-green {
    background: linear-gradient(135deg, #1f5c1a 0%, #307c29 50%, #1f5c1a 100%);
}

.news-ticker {
    background: linear-gradient(90deg, #c0943c, #DAB86B, #fdfbae, #DAB86B, #c0943c);
    margin-bottom: 0;
    padding: 8px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.marquee ul,
.marquee li {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #1d1c1c;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 15px;
}

.nav-link {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 13px;
}

.nav-link:focus,
.nav-link:hover,
.nav-link.active {
    color: #fdfbae !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    height: 3px;
    width: 60%;
    background-color: #fdfbae;
    position: absolute;
    bottom: 0;
    left: 20%;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
}

.nav-link.dropdown-toggle:hover::after,
.nav-link.dropdown-toggle.active::after {
    opacity: 0;
}

.dropdown-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu > li > a {
    padding: 10px 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu > li > a:hover {
    background-color: #DAB86B;
    color: #fff;
    padding-left: 30px;
}

/* ============================================
   CAROUSEL / SLIDER
   ============================================ */
.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    pointer-events: none;
}

.carousel-item img {
    transition: transform 8s ease;
}

.carousel-item.active img {
    transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    opacity: 0;
    transition: all 0.4s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none !important;
}

.carousel-control-prev i,
.carousel-control-next i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    opacity: 1 !important;
    transform: scale(1.2);
}

/* ============================================
   COVER ZOOM (WHAT'S ON)
   ============================================ */
.cover {
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.cover:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.cover img {
    width: 100%;
    transition: 0.6s all cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cover:hover img {
    transform: scale(1.15);
}

.cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.cover:hover::after {
    opacity: 1;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
}

.card-img-top {
    transition: all 0.6s ease;
}

.card:hover .card-img-top {
    transform: scale(1.08);
}

.card-body {
    padding: 20px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.4;
}

/* Card Title Link - Emas default, hover kontras */
.card-title-link {
    color: #DAB86B;
    transition: color 0.3s ease;
}

.card-title-link:hover {
    color: #1d1c1c !important;
}

@media (prefers-color-scheme: dark) {
    .card-title-link {
        color: #DAB86B;
    }
    
    .card-title-link:hover {
        color: #ffffff !important;
    }
}

.card-text {
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================
   TENANT
   ============================================ */
.tenant-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #DAB86B;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CUSTOM BUTTONS
   ============================================ */
.btn-more-light {
    display: inline-block;
    padding: 12px 40px;
    font-size: 12px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-more-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-more-light:hover::before {
    left: 0;
}

.btn-more-light:hover {
    color: #1d1c1c;
    border-color: #fff;
}

.btn-more-dark {
    display: inline-block;
    padding: 12px 40px;
    font-size: 12px;
    text-decoration: none;
    border: 2px solid #1d1c1c;
    color: #1d1c1c;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-more-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1d1c1c;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-more-dark:hover::before {
    left: 0;
}

.btn-more-dark:hover {
    color: #fff;
    border-color: #1d1c1c;
}

.btn-outline-warning {
    color: #c0943c;
    border-color: #c0943c;
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline-warning:hover {
    background-color: #c0943c;
    color: #fff;
    border-color: #c0943c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(218, 184, 107, 0.4);
}

/* ============================================
   HEADING SECTIONS
   ============================================ */
.heading-section {
    position: relative;
    font-family: 'Playfair Display', serif;
}

/* Style One */
.one .heading-section {
    color: #c0943c;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 32px;
}

.one .heading-section:before {
    width: 40px;
    height: 4px;
    display: block;
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    margin-left: -20px;
    background: linear-gradient(90deg, #c0943c, #fdfbae, #c0943c);
    border-radius: 2px;
}

.one .heading-section:after {
    width: 60%;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 25px;
    left: 50%;
    margin-left: -30%;
    background: linear-gradient(90deg, transparent, #DAB86B, transparent);
}

/* Style Two */
.two .heading-section {
    color: #fdfbae;
    font-weight: 700;
    font-size: 42px;
    letter-spacing: 1px;
    line-height: 1.5em;
    padding-bottom: 20px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.one .heading-section span,
.two .heading-section span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 3em;
    padding-left: 0.25em;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 10px;
}

.two .heading-section:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, #fdfbae, #c0943c);
    border-radius: 2px;
}

.two .heading-section:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 50%;
    background: linear-gradient(90deg, #DAB86B, transparent);
}

/* ============================================
   PAGINATION
   ============================================ */
.active>.page-link,
.page-link.active {
    background: linear-gradient(135deg, #c0943c, #DAB86B);
    border-color: #c9a552;
    color: #fff;
}

.page-link {
    color: #c8a555;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 3px;
    font-weight: 500;
}

.page-link:hover {
    background: linear-gradient(135deg, #DAB86B, #fdfbae);
    color: #1d1c1c;
    border-color: #DAB86B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 184, 107, 0.3);
}

/* ============================================
   PARALLAX BANNER
   ============================================ */
.page-banner {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 200px 0;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.page-banner-overlay {
    background-color: rgba(0, 0, 0, 0.25);
}

/* ============================================
   CATEGORY MENU / FACILITIES
   ============================================ */
.category-menu {
    display: flex;
    justify-content: center;
    margin: 0;
    flex-wrap: wrap;
}

.category-menu li {
    margin: 20px;
    list-style: none;
}

.category-menu .facilites {
    display: inline-block;
    border: 2px dashed #DAB86B;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-width: 100px;
    padding: 10px;
}

.category-menu .facilites a {
    color: #DAB86B;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-menu .facilites:hover {
    background: linear-gradient(135deg, #DAB86B, #fdfbae);
    color: #1d1c1c;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(218, 184, 107, 0.3);
    border-style: solid;
}

.category-menu .facilites:hover a {
    color: #1d1c1c;
}

.banner-bg {
    background: url(../images/banner-bg.png?v=1);
    background-repeat: no-repeat;
}

/* ============================================
   FLOOR MAP
   ============================================ */
svg path.tenant-svg:hover,
.svg-hover {
    fill: #fdfbae;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(218, 184, 107, 0.5));
}

svg text {
    pointer-events: none;
}

/* ============================================
   TENANT LIST
   ============================================ */
.tenant-list {
    overflow-y: auto;
    height: 900px;
    padding-right: 10px;
}

.tenant-list::-webkit-scrollbar {
    width: 8px;
}

.tenant-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.tenant-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c0943c, #DAB86B);
    border-radius: 10px;
}

.tenant-list::-webkit-scrollbar-thumb:hover {
    background: #c0943c;
}

.tenant-list li {
    border-left: 5px solid #006E3E !important;
    border-bottom: 2px dotted #d9ba6f;
    transition: all 0.3s ease;
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 5px;
}

.tenant-list li:hover {
    background: linear-gradient(90deg, rgba(218, 184, 107, 0.08) 0%, transparent 100%);
    border-left-width: 10px !important;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c0943c, #fdfbae, #c0943c);
}

footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    opacity: 1 !important;
    color: #DAB86B !important;
    padding-left: 5px;
}

footer .btn-outline-light {
    transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
    background-color: #DAB86B;
    border-color: #DAB86B;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218, 184, 107, 0.3);
}

.footer-content {
    color: #D9BA70;
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instafeed-container {
    object-fit: cover;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.instafeed-container .caption {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
    color: #FFF;
    font-size: 14px;
    padding: 2em 1.5em;
    position: absolute;
    opacity: 0;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 15px;
}

.instafeed-container:hover .caption {
    opacity: 1;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c0943c, #DAB86B);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    box-shadow: 0 5px 25px rgba(218, 184, 107, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #307c29, #1f5c1a);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(48, 124, 41, 0.4);
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c0943c, #fdfbae, #c0943c);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* ============================================
   IMAGE HOVER OVERLAY
   ============================================ */
.img-hover-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.img-hover-overlay::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(218, 184, 107, 0.9);
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.img-hover-overlay:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .two .heading-section {
        font-size: 36px;
    }
    
    .one .heading-section {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .two .heading-section {
        font-size: 30px;
    }

    .one .heading-section {
        font-size: 24px;
    }

    .justify-content-end {
        justify-content: flex-start !important;
    }

    .sidebar {
        background: linear-gradient(180deg, rgba(31, 92, 26, 0.98) 0%, rgba(48, 124, 41, 0.98) 100%);
        backdrop-filter: blur(20px);
    }

    .page-banner {
        padding: 100px 0;
        background-attachment: scroll;
    }

    .tenant-list {
        height: auto;
        max-height: 500px;
    }

    .card:hover {
        transform: translateY(-6px);
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .btn-more-light,
    .btn-more-dark {
        padding: 10px 30px;
        letter-spacing: 2px;
    }
    
    .nav-link {
        text-align: left;
        padding: 12px 15px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        transform: none;
        background: rgba(253, 251, 174, 0.1);
        border-radius: 8px;
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .two .heading-section {
        font-size: 26px;
    }
    
    .one .heading-section {
        font-size: 22px;
    }

    .btn-more-light,
    .btn-more-dark {
        padding: 10px 25px;
        font-size: 11px;
    }

    .marquee ul,
    .marquee li {
        letter-spacing: 2px;
        font-size: 13px;
    }
    
    .cover {
        border-radius: 8px;
    }
}

@media (max-width: 575px) {
    .two .heading-section {
        font-size: 22px;
    }
    
    .one .heading-section {
        font-size: 18px;
    }

    .btn-more-light,
    .btn-more-dark {
        padding: 8px 20px;
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* ============================================
   POST CONTENT STYLING
   ============================================ */
.post-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.post-content p {
    margin-bottom: 1.2rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: 'Playfair Display', serif;
    color: #307c29;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content blockquote {
    border-left: 4px solid #DAB86B;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    margin: 1.5rem 0;
}

.post-content ul,
.post-content ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

.post-content a {
    color: #c0943c;
    text-decoration: underline;
}

.post-content a:hover {
    color: #307c29;
}