/* ============================================
   RENDEZVOUS WELLNESS & RESORT
   Custom Styles - Bootstrap 5
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #c5a03c;
    --accent-hover: #c1121f;
    --gold: #d4a373;
    --cream: #f5f0e8;
    --dark: #0f0f1a;
    --dark-card: #111111;
    --text: #333333;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* === Global === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* === Utility Classes === */
.text-accent {
    color: var(--accent) !important;
}

.bg-dark-custom {
    background-color: var(--dark);
}

.bg-cream {
    background-color: var(--cream);
}

section.rendezvous {
    padding: 30px 0;
}

.section-label {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
    text-shadow:0 0 1px gray;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background-color: var(--accent);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.bg-dark-custom .section-title {
    color: var(--white);
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.bg-dark-custom .section-text {
    color: rgba(255, 255, 255, 0.7);
}

/* === Buttons === */
.btn-cta {
    background-color: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-cta:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* === Navbar === */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 8px 16px !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.nav-btn {
    margin-left: 10px;
    padding: 8px 24px !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /*background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    background-size: cover;
    background-position: center;*/
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/web/ubud-hotel/media/images/rendezvous_hero_frontpage.jpg') center/cover;
    opacity: 1.0;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 26, 0.4), rgba(15, 15, 26, 0.6));
    z-index: 1;
}

.hero-section > .container,
.hero-section > div .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(17, 17, 17, 0.5);

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
            
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(197, 160, 60, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow:0 0 5px gray;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* === Philosophy Section === */
.philosophy-image {
    position: relative;
}

.image-main {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-main img {
    width: 100%;
    height: 450px;
}

.image-main img, .image-accent img {
    object-fit: cover;
    transition: transform 0.5s ease;
}
.image-main:hover img {
    transform: scale(1.05);
}

.image-accent:hover img {
    transform: scale(1.05);
}
.image-accent {
    position: absolute;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.image-accent-top {
    
    top: -30px;
    right: -20px;
}
.image-accent-middle {
    
    top: 150px;
    right: -20px;
}
.image-accent-bottom {
    
    bottom: -30px;
    right: -20px;
}

.image-accent img {
    width: 100%;
    /*height: 150px;*/
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--accent);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.philosophy-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.philosophy-point i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.philosophy-point span {
    font-size: 0.95rem;
    color: var(--text);
}

/* === Gym Cards === */

.rendezvous-dark-card-image {
    height: 220px;
    object-fit: cover;
}
.rendezvous-dark-card {
    background: var(--dark-card);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    
}

.rendezvous-dark-card h2,
.rendezvous-dark-card h3,
.rendezvous-dark-card h4 {color:white}

.rendezvous-dark-card  p {color:#bbbbbb}

.rendezvous-dark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}


.gym-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.gym-card:hover .gym-icon {
    background: var(--accent);
    color: var(--white);
}

.gym-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.gym-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* === Class Cards === */
.rendezvous-white-card {
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.rendezvous-white-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--accent);
}

.rendezvous-white-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.class-card:hover::before {
    transform: scaleX(1);
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.class-time {
    display: inline-block;
    background: var(--cream);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.class-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: var(--accent);
}

.class-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.class-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* === Menu Items === */
.menu-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.menu-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.menu-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,0, 0, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.menu-item h5 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.menu-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.cafe-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cafe-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cafe-image:hover img {
    transform: scale(1.05);
}

/* === Co-working === */
.coworking-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coworking-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.coworking-features li i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.coworking-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.coworking-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coworking-image:hover img {
    transform: scale(1.05);
}

/* === Testimonials === */
.testimonial-card {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 35px;
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-5px);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.testimonial-author h6 {
    color: var(--white);
    margin-bottom: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, black 0%, gray 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-cta {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

.cta-section .btn-cta:hover {
    background: transparent;
    color: var(--white);
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.6));
}

.page-header > .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow:0 0 3px gray;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    text-shadow:0 0 3px gray;
}

/* === Inclusions Grid === */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.inclusion-item i {
    color: var(--accent);
}

/* === Room Cards === */
.room-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    box-shadow: var(--shadow-lg);
}

.room-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.popular-badge {
    background: var(--accent);
    color: var(--white);
}

.best-badge {
    background: var(--gold);
    color: var(--white);
}

.luxury-badge {
    background: var(--primary);
    color: var(--white);
}

.elite-badge {
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    color: var(--white);
}

.room-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-type {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
}

.room-name {
    font-size: 2rem;
    color: var(--primary);
    margin: 8px 0;
}

.room-price {
    margin-bottom: 20px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.room-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text);
}

.feature-item i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

/* === Gallery === */
.gallery-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 15, 26, 0.8), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-item.hidden {
    display: none;
}

/* === FAQ === */
.faq-category {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category i {
    color: var(--accent);
}

.accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    padding: 20px 25px;
    background: var(--white);
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(230, 57, 70, 0.05);
    color: var(--accent);
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 0 25px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* === Contact Form === */
.form-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-form textarea {
    resize: vertical;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

.form-success h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
}

/* Contact Info Card */
.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.info-item h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.info-item a {
    color: var(--accent);
}

.info-item a:hover {
    color: var(--accent-hover);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.social-contact h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 12px;
}

/* === Footer === */
.footer-section {
    background: var(--dark);
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-section h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* === Responsive === */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .room-content {
        padding: 25px;
    }

    .room-name {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .room-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-accent {
        width: 150px;
    right: -10px;
    
    }

/*
.image-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.image-accent img {
    width: 50%;
}*/

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .navbar-collapse {
/*    background: transparent;
    
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);*/
        
        padding: 20px;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;page-subtitle
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 20px;
    }

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

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

    .gallery-card img {
        height: 200px;
    }

    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-item {
        flex: 0 0 45%;
    }

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

    .room-price {
        text-align: left;
    }
}

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}




.bg-top-rendezvous  {color:white !important;padding: 0px 2px;background: black;margin:0 auto}
.rendezvous-top-site-links {text-align: right;width: 100%}
ul.top-site-links {list-style: none;padding: 0px 0px;margin:0px 0px;}
ul.top-site-links li{float: left;padding: 3px 10px;border-right: 1px dotted gold;}
ul.top-site-links li:last-child {border-right: none}
ul.top-site-links li a:hover {color:gold !important}
ul.top-site-links li a.nav-link {padding:2px 0px !important}
#top_navigation_menu a.nav-link {text-transform: uppercase}
.rendezvous-top-navbar {padding:0px;background:black}
#rendezvous-navbar {padding: 4px 0px !important}
.navbar-absolute 
{
    position: absolute;top:32px; width: 100%;
    /*background-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.2));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);  
    */
        
    
}


.room-hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: url('/web/ubud-hotel/media/images/rooms/header/suite_bath_17.jpg') center/cover;
    /*background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    background-size: cover;
    background-position: center;*/
    overflow: hidden;
    padding-top: 80px;
}
