/* ==========================================================================
   PERGI PLATFORM - MASTER STYLESHEET
   ========================================================================== */

/* --- RESET & BASE STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    background-color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   1. UTAMA: LOGO PRESISI (PIN + ERGI SEJAJAR)
   ========================================================================== */
.site-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 2px;
}

.site-brand img {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
    /* Menurunkan Pin sejauh 5px agar bagian atas bulatan Pin sejajar rata dengan huruf E */
    margin-top: 5px; 
}

.site-brand span {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1.5px;
    line-height: 1;
    display: inline-block;
}

/* ==========================================================================
   2. HEADER & NAVIGASI
   ========================================================================== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.site-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-navigation__link {
    text-decoration: none;
    color: #475569;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.site-navigation__link:hover {
    color: #D71920;
}

.site-navigation__link.active {
    color: #D71920;
    font-weight: 600;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==========================================================================
   3. TOMBOL / BUTTONS
   ========================================================================== */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.button--primary {
    background-color: #D71920;
    color: #ffffff;
    border-color: #D71920;
}

.button--primary:hover {
    background-color: #b91218;
    border-color: #b91218;
    box-shadow: 0 4px 12px rgba(215, 25, 32, 0.25);
}

.button--outline {
    background-color: transparent;
    color: #1e293b;
    border-color: #e2e8f0;
}

.button--outline:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

/* ==========================================================================
   4. HERO & SECTIONS
   ========================================================================== */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.section-hotel {
    padding: 60px 0;
    background-color: #f8fafc;
}

/* ==========================================================================
   5. FOOTER SITE
   ========================================================================== */
.site-footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 60px 0 24px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .site-brand span {
    color: #ffffff;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* ==========================================================================
   6. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .site-navigation {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}