body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #1a1a1a, #000000);
    color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility; #1a1a1a, #000000);
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    box-sizing: border-box;
    gap: 10px;
}

/* Logo */
.logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}

/* Heading */
h1 {
    font-size: 2.6rem;
    letter-spacing: 3px;
    margin: 0;
    color: #f5f5f5;
}

/* Sub text */
.tagline {
    font-size: 1.1rem;
    color: #cfcfcf;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Accent line */
.accent {
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, #6b0f1a, #b31237);
    margin: 12px auto;
    border-radius: 2px;
}

/* Phone */
.phone {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-top: 10px;
}

/* Email input */
input {
    margin-top: 25px;
    padding: 12px;
    width: 260px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    outline: none;
    background: rgba(255,255,255,0.05);
    color: #fff;
}

/* Button */
button {
    margin-top: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6b0f1a, #8a1524);
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* WhatsApp Button */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.whatsapp:hover {
    transform: scale(1.08);
}

/* Rooms preview */
.rooms {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #bdbdbd;
    opacity: 0.9;
}

.rooms span {
    display: inline-block;
    margin: 5px 10px;
}
img {
    max-width: 100%;
    height: auto;
}
