body {
    background: url("/assets/img/hotel-bg.png") no-repeat center center fixed;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.welcome-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 18vh;
}

.welcome-content h1 {
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.welcome-content p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #f1f1f1;
    margin-top: 1rem;
}

.btn-group-custom {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-custom {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #333;
    transform: translateY(-2px);
}

footer {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}