
/*
Theme Name: Elite Desires Luxury
Author: ChatGPT
Version: 2.0
*/

body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#050505;
    color:#fff;
}
header{
    background:#000;
    padding:20px 40px;
    border-bottom:1px solid #b68b2d;
}
.logo{
    font-size:32px;
    color:#d4af37;
    font-weight:bold;
}
nav a{
    color:#fff;
    margin-right:20px;
    text-decoration:none;
}
.hero{
    height:90vh;
    background:url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
    display:flex;
    align-items:center;
    padding:60px;
}
.hero-overlay{
    background:rgba(0,0,0,0.65);
    padding:40px;
    max-width:650px;
}
.hero h1{
    font-size:72px;
    color:#d4af37;
    margin:0;
}
.section{
    padding:70px 40px;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}
.card{
    background:#111;
    border:1px solid #b68b2d;
    border-radius:12px;
    overflow:hidden;
}
.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}
.card h3{
    color:#d4af37;
    padding:15px;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}
.gallery img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid #b68b2d;
}
footer{
    background:#000;
    padding:40px;
    border-top:1px solid #b68b2d;
}
footer a{
    color:#d4af37;
    text-decoration:none;
    margin-right:20px;
}
