html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Segoe UI", sans-serif;
}

body {
    background:
        url('/custom_landing_page/static/src/img/hotel-bg.jpg')
        center center;
    background-size: cover;
    overflow: hidden;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 35, 66, 0.65);
}

.hero-container {
    position: relative;
    z-index: 2;

    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {

    width: 650px;

    background: rgba(255,255,255,0.12);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 25px;

    text-align: center;

    padding: 50px;

    color: white;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
}

.tagline {
    font-size: 22px;
    color: #d4af37;
}

.subtitle {
    margin-bottom: 35px;
    font-size: 17px;
}

.button-container {

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portal-btn,
.erp-btn {

    text-decoration: none;

    padding: 18px;

    border-radius: 12px;

    font-weight: bold;

    transition: 0.3s;
}

.portal-btn {
    background: #d4af37;
    color: #0a2342;
}

.erp-btn {
    background: #0a2342;
    color: white;
}

.portal-btn:hover,
.erp-btn:hover {
    transform: translateY(-3px);
}