/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BASE ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: #0b0b0b;
    color: #ffffff;
}

/* ===== HEADER ===== */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 25px 60px;
    z-index: 10;
}

.header img {
    height: 70px;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: url('/assets/images/hero-luxury.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: #dddddd;
    margin-bottom: 40px;
}

/* ===== BUTTON ===== */
.btn-primary {
    background: linear-gradient(135deg, #ff8c00, #ff5f00);
    color: #fff;
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(255,140,0,0.45);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255,140,0,0.65);
}

/* ===== FEATURES ===== */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: #0f0f0f;
    padding: 40px 20px;
}

.feature {
    background: #151515;
    padding: 18px 26px;
    border-radius: 14px;
    font-size: 15px;
    color: #f2f2f2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }
}
