/*
Develop and designed by Dwija Arsana

Author: Dwija Arsana
Author URI: https://www.dwijaarsana.com/ 

*/

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    min-height: 100vh;
    font-family: "Philosopher", sans-serif;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
}

/* ===== MAIN CONTAINER ===== */
.container {
    width: 100%;
    max-width: 440px;
    padding: 40px 30px;
    border-radius: 16px;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

    text-align: center;
}

/* ===== LOGO ===== */
.container img {
    max-width: 160px;
    margin: 0 auto 20px;
    display: block;
}

/* ===== TITLE ===== */
.container h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
}

/* ===== TEXT ===== */
.container p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 28px;
}

/* ===== BUTTONS ===== */
.btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    color: #ffffff;
    transition: all 0.25s ease;
    margin-bottom: 14px;
}

/* Google */
.btn.google {
    background: #4285f4;
}
.btn.google:hover {
    background: #3367d6;
}

/* TripAdvisor */
.btn.tripadvisor {
    background: #00af89;
}
.btn.tripadvisor:hover {
    background: #008f71;
}

/* HolidayCheck */
.btn.holidaycheck {
    background: #ffb400;
    color: #222;
}
.btn.holidaycheck:hover {
    background: #e6a200;
}

/* ===== OUTLET SECTION ===== */
.outlet-horizontal {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.outlet-horizontal h3 {
    font-size: 14px;
    margin-bottom: 18px;
    color: #666;
}

/* ===== OUTLET GRID ===== */
.outlet-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* ===== OUTLET CARD ===== */
.outlet-card-static {
    width: 110px;
    text-align: center;
}

.outlet-card-static img {
    width: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}

.outlet-card-static span {
    font-size: 12px;
    color: #444;
    line-height: 1.4;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #999;
}

.footer .copyright {
    display: block;
    margin-top: 4px 0;
    font-size: 11px;
    color: #ffffff;
}
.footer .copyright a {
    color: #ffffff;
    text-decoration: none;
    text-decoration: none;
}