html,body{
max-width:100%;
overflow-x:hidden;
}

img{
max-width:100%;
height:auto;
}

.swiper{
overflow:hidden;
}

/* ===== GLOBAL TYPOGRAPHY SYSTEM (MONTSERRAT ONLY) ===== */

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

/* Heading Styling */
h1, h2, h3, h4, 
.section-title-italic, 
.haven-title, 
.villa-info-card h3, 
.hotel-event-section .main-title, 
.footer-col h4,
.overlay-nav a {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700; /* Bold untuk judul */
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Paragraph Styling */
p {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 400;
  line-height: 1.8;
  text-transform: none; /* Pastikan paragraf tidak huruf besar semua */
}

/* Menangani elemen yang tadinya Italic (Playfair) */
.section-title-italic, .haven-title span, .hero-content p {
    font-style: italic;
    font-weight: 500;
}

/* Fix untuk section spesifik yang kamu buat di bawah */
.hotel-event-section h2, 
.hotel-event-section p, 
.hotel-event-section .btn-link,
.hotel-gallery {
  font-family: 'Montserrat', sans-serif !important;
}

/* Mempertegas Tombol */
.book-now-btn, .btn-book-outline, .view-gallery-btn, .fun-btn {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
}
        /* ==========================================================================
           2. HEADER & NAVIGATION
           ========================================================================== */
        .main-header {
            position: absolute;
            top: 0; left: 0; width: 100%; z-index: 1000;
            padding: 25px 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .main-header.sticky {
            position: fixed; 
            background: rgba(255, 255, 255, 0.98); 
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .header-container {
            display: flex; justify-content: space-between; align-items: center;
            max-width: 95%; margin: 0 auto;
        }

        .header-left, .header-right { display: flex; align-items: center; flex: 1; }
        .header-center { flex: 0 0 auto; display: flex; justify-content: center; align-items: center; }
        .header-right { justify-content: flex-end; }

        .hamburger-menu { cursor: pointer; margin-right: 40px; }
        .hamburger-menu span {
            display: block; width: 28px; height: 1px; background-color: #fff; margin-bottom: 8px;
            transition: 0.3s;
        }

        .main-header.sticky .hamburger-menu span { background-color: #333; }
        .main-header.sticky .nav-links a { color: #333; }

/* 1. Logo saat awal (di atas Hero) - Warna Putih */
.logo img { 
    height: 80px; 
    transition: 0.4s ease; 
    /* brightness(0) membuatnya hitam, invert(1) mengubahnya menjadi putih */
    filter: brightness(0) invert(1); 
}

/* 2. Logo saat di-scroll (Sticky) - Kembali ke Warna Asli */
.main-header.sticky .logo img { 
    height: 70px; 
    /* Mengembalikan logo ke warna aslinya */
    filter: none; 
}

        .nav-links { display: flex; gap: 25px; }
        .nav-links a {
            color: #fff; text-decoration: none; font-size: 11px;
            text-transform: uppercase; letter-spacing: 2px; font-weight: 500;
            transition: 0.3s;
        }
        .nav-links a:hover { opacity: 0.6; }

        .book-now-btn {
            background-color: #06542a; color: #fff; text-decoration: none;
            padding: 12px 26px; font-size: 11px; font-weight: 600;
            letter-spacing: 2px; margin-left: 30px; transition: 0.3s;
        }
        .book-now-btn:hover { background-color: #3d6f72; transform: translateY(-2px); }    

        /* Fullscreen Menu Overlay */
        .menu-overlay {
            position: fixed; top: -110%; left: 0; width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.98); z-index: 2000;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .menu-overlay.active { top: 0; }
        .close-menu { position: absolute; top: 30px; left: 40px; font-size: 40px; cursor: pointer; color: #333; }
        .overlay-nav { display: flex; flex-direction: column; gap: 20px; text-align: center; }
        .overlay-nav a {
            font-family: 'Playfair Display', serif; font-size: 32px; text-decoration: none;
            color: #333; text-transform: uppercase; letter-spacing: 4px; transition: 0.3s;
        }
        .overlay-nav a:hover { color: #06542a; font-style: italic; }

        /* ==========================================================================
           3. HERO SLIDER
           ========================================================================== */
        .hero-swiper { width: 100%; height: 100vh; }
        .hero-slide {
            width: 100%; height: 100%;
            background-size: cover; background-position: center;
            display: flex; align-items: center; justify-content: center; text-align: center;
            position: relative;
        }
        .hero-slide::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.25); }
        .hero-content { position: relative; z-index: 2; padding: 0 20px; }
        .hero-content h1 {
            font-family: 'Playfair Display', serif; color: #fff;
            font-size: clamp(40px, 7vw, 85px); letter-spacing: 12px; line-height: 1.1;
            text-transform: uppercase;
        }
        .hero-content p { font-family: 'Playfair Display', serif; color: #fff; font-style: italic; font-size: clamp(16px, 2vw, 24px); margin-top: 20px; }
        .swiper-pagination-bullet { background: #fff !important; opacity: 0.5; }
        .swiper-pagination-bullet-active { opacity: 1; }

        /* ==========================================================================
           4. HAVEN SECTION
           ========================================================================== */
        .haven-section {
            padding: 120px 0;
            background-color: #f8f7f5;
            overflow: hidden;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
.haven-image-main {
    grid-column: 2;
    grid-row: 2;
}

.haven-image-stack {
    grid-column: 3;
    grid-row: 2;
}

        .haven-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 1fr;
    grid-template-rows: auto 750px; /* ✅ INI YANG HILANG */
    align-items: start;
}



.haven-title {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    letter-spacing: 3px;
}

.haven-text-card {
    grid-column: 1;
    grid-row: 2;
    background: #ebeae5;
    padding: 70px 50px;
    position: relative;
    z-index: 10;
}


        .haven-title span {
            color: #06542a;
            font-style: italic;
        }
        .haven-image-main {
    height: 100%;
}

.haven-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

        .haven-image-stack img {
    width: 100%;
    height: calc((750px - 30px) / 2); /* ✅ 2 gambar + 1 gap */
    object-fit: cover;
}
      /* HAVEN SECTION – REFINED MOBILE VERSION */
@media (max-width: 768px) {
    .haven-section {
        padding: 60px 0; /* Memberi ruang napas atas-bawah */
    }

    .container {
        padding: 0 20px; /* Padding samping agar teks tidak nempel layar */
    }

    .haven-grid {
        display: flex;
        flex-direction: column; /* Ubah ke flex agar lebih stabil di mobile */
        gap: 25px;
    }

    .haven-title {
        font-size: 28px; /* Sedikit lebih kecil agar tidak makan tempat */
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: left;
    }

    .haven-text-card {
        padding: 30px 20px; /* Kurangi padding raksasa dari desktop */
        background: #ebeae5;
        width: 100%;
        box-sizing: border-box;
        z-index: 1;
    }

    /* Layout Gambar: 1 Besar di atas, 2 Kecil berjajar di bawah */
    .haven-image-main {
        width: 100%;
        height: 300px; /* Tinggi tetap agar konsisten */
    }

    .haven-image-main img {
        border-radius: 8px;
    }

    /* Memperbaiki tampilan gambar kecil agar tidak terlalu panjang ke bawah */
    .haven-image-stack {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Gambar kecil berjejer ke samping */
        gap: 10px;
    }

    .haven-image-stack img {
        height: 150px; /* Tinggi proporsional untuk mobile */
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
}

        /* ==========================================================================
           5. VILLAS SECTION
           ========================================================================== */
        .villas-section { padding: 100px 0; background: #fff; }
        .section-divider { display: flex; align-items: center; justify-content: center; gap: 30px; margin-bottom: 60px; }
        .divider-line { flex: 1; height: 1px; background: #e0e0e0; max-width: 250px; }
        .section-title-italic { font-family: 'Playfair Display', serif; font-style: italic; font-size: 28px; color: #444; }
        .villa-item { position: relative; height: 550px; margin-bottom: 60px; }
        .villa-item img { width: 100%; height: 100%; object-fit: cover; }
        .villa-info-card {
            position: absolute; bottom: -40px; right: 0; background: #f8f7f5;
            padding: 40px; width: 85%; z-index: 5;
            box-shadow: 15px 15px 40px rgba(0,0,0,0.06);
        }
        .villa-info-card h3 { font-family: 'Playfair Display', serif; color: #06542a; margin-bottom: 15px; }
        .card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
        .btn-book-outline { 
            border: 1px solid #06542a; color: #06542a; padding: 12px 25px; 
            text-decoration: none; font-size: 11px; font-weight: 700; transition: 0.3s;
        }
        .btn-book-outline:hover { background: #06542a; color: #fff; }


/* LEFT ALIGNED SECTION DIVIDER */
.section-divider {
    justify-content: flex-start;
    gap: 25px;
}

.section-divider .section-title-italic {
    white-space: nowrap;
}

.section-divider .divider-line {
    max-width: none;     /* supaya panjang penuh */
    flex: 1;
}
      
      @media (max-width: 768px) {
    /* 1. Reset Section Padding */
    .villas-section {
        padding: 50px 0;
    }

    /* 2. Sesuaikan Divider agar tidak terlalu lebar */
    .section-divider {
        gap: 15px;
        margin-bottom: 40px;
    }

    .section-title-italic {
        font-size: 22px;
    }

    /* 3. Perbaikan Villa Item (Container) */
    .villa-item {
        height: auto; /* Biarkan tinggi mengikuti konten */
        margin-bottom: 80px; /* Jarak antar item */
        display: flex;
        flex-direction: column;
    }

    .villa-item img {
        height: 300px; /* Gambar diperpendek agar kartu bisa naik sedikit */
        border-radius: 4px;
    }

    /* 4. Perbaikan Info Card */
    .villa-info-card {
        position: relative; /* Ubah dari absolute ke relative */
        width: 90%; /* Lebar hampir penuh */
        margin: -60px auto 0 auto; /* Tarik kartu ke atas sedikit untuk efek overlap */
        padding: 25px; /* Padding lebih kecil agar teks tidak sesak */
        bottom: 0;
        right: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }

    .villa-info-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .villa-info-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 5. Footer Card (Tombol) */
    .card-footer {
        flex-direction: row; /* Tetap sejajar */
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
    }

    .see-more {
        font-size: 12px;
    }

    .btn-book-outline {
        padding: 10px 18px;
        font-size: 10px;
    }
}



/* =========================================
   6. GALLERY STRIP (DRONE STYLE)
   ========================================= */
.gallery-strip { 
    width: 100%; 
    height: 450px; 
    position: relative;
    overflow: hidden;
}

.gallery-bg { 
    width: 100%; 
    height: 100%; 
    /* Gunakan gambar drone yang Anda inginkan */
    background-image: url('https://thehighlandparkresortbogor.com/Indonesia/wp-content/uploads/BARRACK-APACHE-1-scaled.webp'); 
    background-size: cover; 
    background-position: center;
    display: flex; 
    align-items: flex-end; /* Tombol di bawah */
    justify-content: center; 
    padding-bottom: 40px;
}

.view-gallery-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #333; 
    text-decoration: none; 
    font-size: 10px; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px; 
    padding: 12px 30px; 
    transition: 0.3s;
    border: none;
}

.view-gallery-btn:hover { background: #fff; transform: translateY(-3px); }

/* Responsive Fix */
@media (max-width: 992px) {
    .haven-grid { grid-template-columns: 1fr; }
    .haven-text-card { margin-right: 0; padding: 40px; }
    .gallery-strip { height: 300px; }
}
      
      /* =========================================
   NEW: CAMP SECTION STYLES
   ========================================= */
.camp-section {
    padding: 100px 0;
    background-color: #fff; /* Warna putih bersih */
}

.camp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.camp-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    transition: 0.4s ease;
}

.camp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.camp-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.camp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.camp-card:hover .camp-img img {
    transform: scale(1.1);
}

.camp-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #06542a;
    color: #fff;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.camp-details {
    padding: 40px;
}

.camp-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #333;
}

.camp-details p {
    font-size: 13px;
    color: #777;
    margin-bottom: 30px;
    line-height: 1.8;
}

.camp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.camp-footer .price {
    font-size: 12px;
    font-weight: 600;
    color: #06542a;
}

.btn-explore {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    letter-spacing: 2px;
    border-bottom: 2px solid #06542a;
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-explore:hover {
    color: #06542a;
}

/* Responsive Camp */
@media (max-width: 768px) {
    .camp-grid {
        grid-template-columns: 1fr;
    }
    .camp-img {
        height: 250px;
    }
}
        /* =========================================
           7. FOOTER SECTION
           ========================================= */
        .main-footer {
            position: relative;
            background: url('https://thehighlandparkresortbogor.com/Indonesia/wp-content/uploads/sunset-1.png') no-repeat center center/cover;
            padding: 100px 0 30px;
            margin-top: 80px;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
        }

        .main-footer::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.4); /* Overlay sedikit lebih gelap agar teks terbaca */
            z-index: 1;
        }

        .footer-container {
            position: relative; z-index: 2;
            max-width: 1200px; margin: 0 auto; padding: 0 20px;
        }

        .footer-logo { text-align: center; margin-bottom: 60px; }
        .footer-logo img { height: 80px; width: auto; filter: brightness(0) invert(1) !important; }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1fr 0.8fr;
            gap: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding-top: 40px; margin-bottom: 60px;
        }

        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            font-size: 14px; text-transform: uppercase; letter-spacing: 2px;
            margin-bottom: 25px; font-weight: 700;
        }

        .footer-col p, .footer-col a {
            font-size: 11px; color: rgba(255, 255, 255, 0.8);
            text-decoration: none; display: block; margin-bottom: 12px;
            line-height: 1.8; letter-spacing: 1px; transition: 0.3s;
        }

        .footer-col a:hover { color: #fff; transform: translateX(3px); }

        .footer-action-row {
            display: flex; justify-content: space-between;
            align-items: flex-end; margin-bottom: 50px;
        }

        .newsletter-box h4 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; margin-bottom: 15px; }

        .input-group { display: flex; gap: 10px; }
        .input-group input {
            background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 10px 15px; color: #fff; width: 250px; font-size: 12px;
        }

        .btn-submit {
            background: transparent; border: 1px solid #fff; color: #fff;
            padding: 10px 20px; cursor: pointer; font-size: 11px; font-weight: 600;
        }

        .btn-book-footer {
            background: #06542a; color: #fff; padding: 15px 40px;
            text-decoration: none; font-weight: 700; letter-spacing: 2px; font-size: 12px;
        }

        .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.3); padding-top: 40px; }
        .partner-logos { display: flex; justify-content: space-around; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
        .partner-logos img { height: 35px; filter: brightness(0) invert(1); }

        .bottom-bar { display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: rgba(255, 255, 255, 0.5); }
        .bottom-links a { color: rgba(255, 255, 255, 0.5); text-decoration: none; margin: 0 10px; }
        .social-links { display: flex; gap: 20px; margin-top: 15px; }
        .social-links a { color: #fff !important; font-size: 18px; display: inline-block !important; margin: 0 !important; transition: 0.3s; }
        .social-links a:hover { transform: translateY(-3px); opacity: 0.8; }

        .back-to-top { position: absolute; right: 20px; top: 40px; cursor: pointer; text-align: center; }

        /* ANIMATION CLASSES */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.2s; }
        .delay-2 { transition-delay: 0.4s; }

        @media (max-width: 1150px) {
            .nav-links { display: none; }
            .haven-grid { grid-template-columns: 1fr; }
            .haven-text-card { margin-right: 0; padding: 40px; }
            .haven-image-main img { height: 500px; }
            .haven-image-stack { flex-direction: row; padding-left: 0; padding-top: 20px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-action-row { flex-direction: column; align-items: flex-start; gap: 30px; }
        }
	
	/* Mengatur ukuran logo agar sejajar dengan teks partner */
.partner-logos-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.partner-logos-strip img {
    height: 80px; /* Sesuaikan tinggi ini agar serasi dengan teks */
    width: auto;
    filter: brightness(0) invert(1); /* Tetap putih */
    opacity: 0.8;
}

.partner-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #06542a;
}

/* Section Wrapper */
/* ===== FIX MEETING / EVENT FONT CONSISTENCY ===== */

.hotel-event-section {
  font-family: 'Montserrat', sans-serif;
}

.hotel-event-section .main-title {
    color: #333 !important; /* Ganti ke #666 jika ingin lebih abu-abu */
    font-weight: 700 !important; /* Agar tidak bold 500/ bold 700*/
}

.hotel-event-section h2 {
    font-weight: 700 !important; /* Nilai 700 untuk membuat TEBAL (Bold) */
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hotel-event-section p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
}

.hotel-event-section .btn-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* OPTIONAL: samakan juga gallery */

/* Judul Utama */
.hotel-event-section .main-title {
  text-align: center;
  color: #06542a; /* Warna gold-taupe sesuai gambar */
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 60px;
}

/* Row Layout */
.hotel-event-section .event-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

/* Zig-zag: Baris kedua dibalik */
.hotel-event-section .event-row.reverse {
  flex-direction: row-reverse;
}

.hotel-event-section .col-img, 
.hotel-event-section .col-text {
  flex: 1;
}

.hotel-event-section img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Styling Teks */
.hotel-event-section h2 {
  color: #06542a;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 20px;
}

.hotel-event-section p {
  color: #06542a;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 25px;
}

.hotel-event-section .btn-link {
  text-decoration: none;
  color: #06542a;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Responsif Mobile */
@media (max-width: 768px) {
  .hotel-event-section .event-row, 
  .hotel-event-section .event-row.reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}


.view-all-btn {
  border: 1px solid #06542a;
  padding: 10px 25px;
  text-decoration: none;
  color: #06542a;
  font-size: 12px;
  letter-spacing: 1px;
}


/* ===== SKYBLAZE SECTION ===== */

.skyblaze-section {
  padding: 120px 0;
  background: #efefef;
  overflow: hidden;
}

.skyblaze-container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
}

/* IMAGE */
.skyblaze-image {
  width: 65%;
}

.skyblaze-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* ===== FUN RESORT SECTION ===== */

.resort-fun-section {
  padding: 120px 0;
  background: #f5f7f3;
  overflow: hidden;
}

.resort-fun-container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
}

/* IMAGE */
.resort-fun-image {
  width: 65%;
}

.resort-fun-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* CONTENT BOX */
.resort-fun-content {
  width: 45%;
  background: linear-gradient(135deg, #2e5f4d, #3f7a63);
  color: #fff;
  padding: 70px 60px;
  margin-left: -120px;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.resort-fun-content h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.resort-fun-content .line {
  width: 70px;
  height: 3px;
  background: #ffd66b;
  display: block;
  margin-bottom: 22px;
}

.resort-fun-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
}

/* BUTTON */
.fun-btn {
  display: inline-block;
  background: #ffd66b;
  color: #1f2d28;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.fun-btn:hover {
  transform: translateY(-3px);
  background: #ffca3a;
}

/* ===== MOBILE ===== */

@media(max-width: 992px){

  .resort-fun-container{
    flex-direction: column;
  }

  .resort-fun-image,
  .resort-fun-content{
    width: 100%;
  }

  .resort-fun-content{
    margin-left: 0;
    margin-top: -40px;
    padding: 40px;
  }

  .resort-fun-image img{
    height: 380px;
  }
}

@media(max-width:992px){

.resort-fun-content{
margin-left:0 !important;
width:100%;
}

}
/* ===== SUBPAGE STYLING ===== */
.sub-hero {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
}
.sub-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
}
.sub-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
.sub-hero-content h1 {
    font-size: clamp(30px, 5vw, 55px);
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff !important;
}
.sub-hero-content p {
    font-size: clamp(13px, 1.5vw, 18px);
    opacity: 0.9;
    color: #fff !important;
}

/* Breadcrumbs */
.breadcrumbs-bar {
    background: #f4f3ef;
    padding: 15px 0;
    border-bottom: 1px solid #e5e4de;
}
.breadcrumbs {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}
.breadcrumbs a {
    color: #06542a;
    text-decoration: none;
    font-weight: 600;
}
.breadcrumbs span {
    margin: 0 10px;
    color: #ccc;
}

/* Amenities Grid */
.amenities-section {
    padding: 80px 0;
    background: #fdfdfd;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.amenity-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}
.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.amenity-card i {
    font-size: 32px;
    color: #06542a;
    margin-bottom: 15px;
}
.amenity-card h4 {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #333;
}
.amenity-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

/* Contact Page Form */
.contact-section {
    padding: 80px 0;
    background: #fff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.contact-info h3 {
    font-size: 20px;
    color: #06542a;
    margin-bottom: 20px;
}
.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-info-item i {
    font-size: 18px;
    color: #06542a;
    margin-top: 5px;
}
.contact-info-item h4 {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #333;
}
.contact-info-item p {
    font-size: 13px;
    color: #666;
}
.contact-form-container {
    background: #f8f7f5;
    padding: 40px;
    border-radius: 4px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #333;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #06542a;
    outline: none;
}
.btn-submit-form {
    background: #06542a;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-submit-form:hover {
    background: #3d6f72;
}

/* Accordion for FAQ */
.faq-section {
    padding: 80px 0;
    background: #f8f7f5;
}
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}
.faq-question {
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: #333;
    transition: 0.3s;
}
.faq-question:hover {
    background: #fafafa;
    color: #06542a;
}
.faq-question i {
    transition: transform 0.3s;
}
.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}
.faq-answer p {
    padding-bottom: 25px;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 5px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Blog Layout styling */
.blog-details-section {
    padding: 80px 0;
    background: #fff;
}
.blog-details-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 50px;
}
@media (max-width: 992px) {
    .blog-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.blog-content h2, .blog-content h3 {
    color: #06542a;
    margin-top: 30px;
    margin-bottom: 15px;
}
.blog-meta {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 30px;
}
.blog-meta span {
    margin-right: 20px;
}
.blog-meta i {
    color: #06542a;
    margin-right: 5px;
}
.blog-sidebar {
    background: #f8f7f5;
    padding: 30px;
    border-radius: 4px;
    align-self: start;
}
.sidebar-widget {
    margin-bottom: 40px;
}
.sidebar-widget h4 {
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 2px solid #06542a;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
}
.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.recent-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.recent-post-info h5 {
    font-size: 11px;
    margin-bottom: 5px;
}
.recent-post-info h5 a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}
.recent-post-info h5 a:hover {
    color: #06542a;
}
.recent-post-info span {
    font-size: 10px;
    color: #999;
}

/* ===== PREMIUM ACCOMMODATIONS GRID & TABS ===== */
.filter-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px auto 20px;
    flex-wrap: wrap;
}
.filter-tab {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #444;
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px;
}
.filter-tab:hover {
    border-color: #06542a;
    color: #06542a;
}
.filter-tab.active {
    background: #06542a;
    border-color: #06542a;
    color: #fff !important;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .accommodations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.premium-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e5e4de;
}
.premium-card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #eaeaea;
}
.premium-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-card:hover .premium-card-img-wrapper img {
    transform: scale(1.06);
}
.premium-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(6, 84, 42, 0.9);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}
.premium-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.premium-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.premium-card-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    text-transform: none !important;
}
.premium-card-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
    font-size: 11px;
    color: #555;
}
.premium-card-specs i {
    color: #06542a;
    margin-right: 5px;
}
.premium-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.premium-card-price {
    font-size: 11px;
    font-weight: 700;
    color: #06542a;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.btn-premium-explore {
    display: inline-block;
    border: 1px solid #06542a;
    color: #06542a;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 10px 22px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-premium-explore:hover {
    background: #06542a;
    color: #fff !important;
}

/* Animations for filter filtering */
.filter-item {
    transition: all 0.4s ease;
}
.filter-item.hidden {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
    display: none !important;
}

/* ===== LUXURY ACCOMMODATIONS REDESIGN ===== */
.hero-wrapper-luxury {
    position: relative;
    width: 100%;
}
.booking-bar-mock {
    position: relative;
    margin: -35px auto 0;
    width: 90%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 15px 30px;
    z-index: 10;
    box-sizing: border-box;
}
@media (max-width: 992px) {
    .booking-bar-mock {
        position: relative;
        margin: 20px auto 0;
        width: 100%;
        grid-template-columns: 1fr;
        border-radius: 12px;
        gap: 15px;
        padding: 20px;
    }
}
.booking-col {
    padding: 0 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}
.booking-col:nth-child(3) {
    border-right: none;
}
@media (max-width: 992px) {
    .booking-col {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding: 0 0 10px 0;
    }
    .booking-col:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
}
.booking-col label {
    font-size: 8px;
    font-weight: 700;
    color: #06542a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.booking-col input, .booking-col select {
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    outline: none;
    cursor: pointer;
    width: 100%;
}
.booking-btn-luxury {
    background: linear-gradient(135deg, #dfc384, #c5a059);
    border: none;
    border-radius: 30px;
    color: #1f2d28;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 15px 25px;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    transition: 0.3s;
}
.booking-btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.luxury-card {
    background: #fff;
    border: 1px solid #f2f2ef;
    border-top: 3px solid #dfc384;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: #dfc384;
}
.luxury-card-img-wrapper {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #eaeaea;
}
.luxury-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.luxury-card:hover .luxury-card-img-wrapper img {
    transform: scale(1.08);
}
.luxury-card-badge-gold {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #dfc384, #c5a059);
    color: #1f2d28;
    padding: 6px 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.luxury-card-perk {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(6, 84, 42, 0.85);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 5px 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-transform: uppercase;
}
.luxury-card-content {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.luxury-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2c3e35;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.luxury-card-content p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    text-transform: none !important;
}
.luxury-card-specs-table {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #f2f2ef;
    border-bottom: 1px solid #f2f2ef;
    margin-bottom: 25px;
}
.luxury-spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.luxury-spec-item span {
    font-size: 9px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.luxury-spec-item strong {
    font-size: 12px;
    color: #333;
    font-weight: 600;
}
.luxury-spec-item i {
    color: #dfc384;
    margin-right: 5px;
}
.btn-luxury-explore {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #dfc384;
    color: #1f2d28;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 14px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fdfcf9;
}
.btn-luxury-explore:hover {
    background: linear-gradient(135deg, #dfc384, #c5a059);
    border-color: #c5a059;
    color: #1f2d28 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

/* ===== CAMP DETAILED PAGE STYLING ===== */
.detail-image-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 15px;
    margin: 40px auto 30px;
}
.detail-main-img {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: #eaeaea;
}
.detail-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-thumbs-col {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    height: 500px;
}
.detail-thumb-img {
    border-radius: 8px;
    overflow: hidden;
    background: #eaeaea;
}
.detail-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 992px) {
    .detail-image-grid {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
    .detail-thumbs-col {
        display: none; /* Hide thumbnails on tablets and mobile */
    }
    .detail-main-img {
        height: 320px;
    }
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}
@media (max-width: 992px) {
    .detail-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.badge-pill-luxury {
    display: inline-block;
    background: #f5f4f0;
    color: #7b735f;
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.luxury-title-serif {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #2c3e35;
    margin: 0 0 15px 0;
    text-transform: none !important;
    letter-spacing: 1px !important;
}

.luxury-section-heading {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e35;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}

.luxury-amenity-pills-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0 40px;
}
.luxury-amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fdfcf9;
    border: 1px solid #f2f2ef;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.01);
}
.luxury-amenity-pill i {
    color: #06542a;
    font-size: 14px;
}

.luxury-booking-widget {
    background: #fdfcf9;
    border: 1px solid #f2f2ef;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    position: sticky;
    top: 100px;
    z-index: 5;
}
@media (max-width: 992px) {
    .luxury-booking-widget {
        position: relative;
        top: 0;
        padding: 25px;
    }
}

/* ========================================================= */
/* ALPINE HOUSE CUSTOM LAYOUT (DARK THEME)                   */
/* ========================================================= */
.alpine-dark-theme {
    background-color: #12281a;
    color: #e5d8b8;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.alpine-dark-theme h1, .alpine-dark-theme h2, .alpine-dark-theme h3 {
    font-family: 'Playfair Display', serif;
    color: #c7a771;
}

/* Hero Section */
.alpine-hero {
    position: relative;
    height: 90vh;
    width: 100%;
    background-image: url('https://thehighlandparkresortbogor.com/Indonesia/wp-content/uploads/Alpine-House-scaled.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.alpine-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(18, 40, 26, 0.4) 0%, rgba(18, 40, 26, 0.9) 100%);
    z-index: 1;
}

.alpine-hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(-20px);
}

.alpine-hero h1 {
    font-size: 80px;
    letter-spacing: 5px;
    margin: 0;
    line-height: 1;
    background: linear-gradient(180deg, #f7d197 0%, #c7a771 50%, #997843 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.alpine-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 35px;
    background: linear-gradient(135deg, #a66a1e, #d8a04c);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.alpine-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

/* Luxury Accommodations (Horizontal Scroller) */
.alpine-section {
    padding: 70px 5%;
    position: relative;
    z-index: 2;
}

.alpine-section-title {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.alpine-accom-container {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.alpine-cards-wrapper {
    display: flex;
    gap: -15px; /* Overlapping effect */
}

.alpine-card {
    width: 180px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    cursor: pointer;
    margin-right: -40px; /* overlap */
}
.alpine-card:hover {
    transform: translateY(-10px) translateX(-10px);
    z-index: 10 !important;
}

.alpine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.alpine-card-title {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 15px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.alpine-accom-text {
    max-width: 400px;
    margin-left: 60px;
}

/* Partner Logos */
.alpine-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    opacity: 0.6;
    align-items: center;
}
.alpine-logos img {
    height: 30px;
    filter: grayscale(100%) brightness(200%);
}

/* Gallery Grid */
.alpine-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.alpine-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.alpine-gallery img:hover {
    opacity: 1;
}

/* Newsletter */
.alpine-newsletter {
    background: #1b241e;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}
.alpine-newsletter h3 {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 2px;
}
.alpine-newsletter p {
    font-size: 12px;
    color: #888;
    margin-bottom: 25px;
}
.alpine-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.alpine-newsletter-form input {
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    width: 300px;
}
.alpine-newsletter-form button {
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #a66a1e, #d8a04c);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

/* Subpage Solid Header Fix */
.main-header.solid-header { position: relative; background: rgba(255, 255, 255, 0.98); padding: 15px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.main-header.solid-header .hamburger-menu span { background-color: #333; }
.main-header.solid-header .nav-links a { color: #333; }
.main-header.solid-header .logo img { filter: none !important; height: 70px; }
@media (max-width: 992px) { .main-header.solid-header { padding: 10px 0; } }
