
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:white;
    font-family:'Montserrat', sans-serif;
    overflow-x:hidden;
}

.gold-particles{
    position:fixed;
    width:100%;
    height:100%;
    background-image:
        radial-gradient(circle, rgba(212,175,55,0.18) 2px, transparent 2px);
    background-size:40px 40px;
    animation:moveParticles 20s linear infinite;
    z-index:-1;
}

@keyframes moveParticles{
    from{transform:translateY(0);}
    to{transform:translateY(-200px);}
}

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
    url('logo.jpeg') center/cover no-repeat;
    position:relative;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    position:sticky;
    top:0;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(10px);
}

.brand{
    font-family:'Cinzel', serif;
    color:#d4af37;
    font-size:1.6rem;
    letter-spacing:2px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

nav a:hover{
    color:#d4af37;
}

.hero-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:100px 20px;
    animation:fadeIn 1.5s ease;
}

.logo{
    width:260px;
    border-radius:24px;
    margin-bottom:30px;
    box-shadow:0 0 40px rgba(212,175,55,0.4);
    animation:floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

.hero h1{
    font-family:'Cinzel', serif;
    font-size:4rem;
    max-width:900px;
    margin-bottom:20px;
}

.hero p{
    max-width:750px;
    font-size:1.1rem;
    color:#ddd;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 34px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.gold-btn{
    background:#d4af37;
    color:black;
}

.gold-btn:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px rgba(212,175,55,0.5);
}

.outline-btn{
    border:1px solid #d4af37;
    color:#d4af37;
}

.outline-btn:hover{
    background:#d4af37;
    color:black;
}

.section{
    padding:100px 8%;
    text-align:center;
}

.section h2{
    font-family:'Cinzel', serif;
    font-size:3rem;
    margin-bottom:50px;
    color:#d4af37;
}

.card-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.glass-card,
.pricing-card{
    width:320px;
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(212,175,55,0.2);
    backdrop-filter:blur(14px);
    transition:0.4s;
}

.glass-card:hover,
.pricing-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(212,175,55,0.25);
}

.glass-card h3,
.pricing-card h3{
    margin-bottom:15px;
    color:#d4af37;
}

.pricing-card span{
    display:block;
    font-size:2rem;
    margin:20px 0;
    font-weight:bold;
}

.featured{
    border:2px solid #d4af37;
    transform:scale(1.04);
}

.luxury-banner{
    height:420px;
    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('logo.jpeg') center/cover no-repeat fixed;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.overlay{
    max-width:700px;
}

.overlay h2{
    font-family:'Cinzel', serif;
    color:#d4af37;
    font-size:3rem;
    margin-bottom:20px;
}

.contact-section{
    background:#0d0d0d;
}

.contact-form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:18px;
    border:none;
    border-radius:14px;
    background:#181818;
    color:white;
}

.contact-form textarea{
    min-height:160px;
}

.contact-form button{
    padding:18px;
    border:none;
    border-radius:40px;
    background:#d4af37;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    transform:scale(1.03);
}

.socials{
    margin-top:40px;
    color:#bbb;
}

footer{
    text-align:center;
    padding:25px;
    background:black;
    color:#888;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .hero h1{
        font-size:2.5rem;
    }

    nav{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

}
