body {
    font-family: 'Montserrat', sans-serif;
    background: #0b0b0b;
}

/* NAVBAR */
.custom-nav {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.logo {
    height: 45px;
}

.brand-text {
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4af37;
}

/* HERO */
.hero {
    height: 100vh;
    background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.lux-title {
    color: #d4af37;
    font-size: 3.5rem;
    letter-spacing: 3px;
    font-weight: 800;
}

.lux-subtitle {
    color: #fff;
    opacity: .85;
    margin-bottom: 30px;
}

.btn-gold {
    background: linear-gradient(45deg, #d4af37, #b8962e);
    color: #000;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: bold;
}

/* SECTIONS */
.lux-section {
    padding: 90px 0;
    background: #0f0f0f;
}

.section-title {
    text-align: center;
    color: #d4af37;
    margin-bottom: 60px;
    font-weight: 700;
}

/* CARDS */
.lux-card {
    background: #151515;
    border: 1px solid rgba(212,175,55,.3);
    padding: 50px 20px;
    text-align: center;
    border-radius: 15px;
    transition: .4s;
}

.lux-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212,175,55,.2);
}

.lux-card i {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 20px;
}

/* ABOUT */
.about {
    padding: 100px 0;
    background:
    linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)),
    url("images/about.jpg") center/cover fixed;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: auto;
    color: #eee;
    font-size: 1.1rem;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #25d366;
    color: #fff;
    font-size: 30px;
    padding: 15px 18px;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 15px 35px rgba(0,0,0,.5);
}
/* VIDEO HERO */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: -1;
}

.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
