body{
    margin:0;
    font-family:Arial,sans-serif;
    background:linear-gradient(to bottom,#0f0f0f,#1a1a1a,#111);
    color:#fff;
}

.brand{
color:white;
font-size:18px;
letter-spacing:4px;
font-family:serif;
}

.hero{
padding:70px 25px;
background:#0b0b0b;
position:relative;
text-align:left;
display:flex;
flex-direction:column;
justify-content:center;
min-height:75vh;
box-shadow:0 15px 35px rgba(212,175,55,0.08);    
}

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

.hero h2{
font-size:24px;
line-height:1.2;
font-weight:900;
color:#ffffff;
text-align:left;
max-width:500px;
margin-top:90px;
margin-bottom:5px;
letter-spacing:0.5px;
}

.hero h2 span{
color:#D4AF37;
}
.hero p{
font-size:15px;
line-height:1.7;
color:#d8d8d8;
max-width:420px;
margin-top:2;
margin-left:0;
font-weight:400;
font-style:italic;
}

h1{
    color:gold;
    font-size:42px;
    line-height:1.1;
}

.btn{
    background:#D4AF37;
    color:#111;
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    display:inline-block;
    margin-top:20px;
    transition:0.3s ease;
    box-shadow:0 0 20px rgba(255,215,0,0.25);
}

.btn:hover{
    transform:translateY(-3px);
    background:#E5C158;
    box-shadow:0 0 30px rgba(255,215,0,0.45);
}


.founder{
padding:60px 20px;
text-align:center;
max-width:900px;
margin:auto;
}

.founder h2{
color:gold;
margin-bottom:20px;
}

.founder img{
width:250px;
border-radius:15px;
margin-bottom:20px;
}
.founder p{
font-size:18px;
line-height:1.8;
}

.contact{
padding:30px 20px;
text-align:center;
}

.contact h2{
color:gold;
margin-bottom:20px;
}

.contact p{
font-size:18px;
margin:10px 0;
}

.founder p{
font-size:18px;
line-height:1.8;
}

.gallery{
padding:10px;
background:#111111;
}

.gallery img{
width:100%;
height:260px;
object-fit:cover;
border-radius:20px;
display:block;
}
.gallery img:hover{
transform:scale(1.04);
box-shadow:0 12px 35px rgba(212,175,55,0.25);
}

.shop-gallery{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
gap:10px;
padding:10px;
}

.shop-gallery img{
width:48%;
height:180px;
object-fit:cover;
border-radius:12px;
}


html{
scroll-behavior:smooth;
}

footer p{
margin:5px 0;
color:white;
}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
z-index:9999;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

header h1{
    font-size:28px;
    margin:8px 0;
}

header p{
    font-size:14px;
    color:#ccc;
}

section{
    padding:60px 20px;
    
}

h2{
    color:#D4AF37;
    letter-spacing:1px;
}

.gallery img,
.shop-gallery img{
    opacity:0;
    transform:translateY(30px);
    animation:fadeUp 0.8s ease forwards;
}

.gallery img:nth-child(1){animation-delay:0.1s;}
.gallery img:nth-child(2){animation-delay:0.2s;}
.gallery img:nth-child(3){animation-delay:0.3s;}
.gallery img:nth-child(4){animation-delay:0.4s;}
.gallery img:nth-child(5){animation-delay:0.5s;}
.gallery img:nth-child(6){animation-delay:0.6s;}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }

.section-title{
text-align:center;
font-size:38px;
font-weight:300;
color:#D4AF37;
letter-spacing:2px;
margin-bottom:10px;
}

.section-title::after{
    content:"";
    display:block;
    width:80px;
    height:2px;
    background:#D4AF37;
    margin:12px auto 0;
}

.founder{
    text-align:center;
    max-width:900px;
    margin:60px auto;
    padding:40px 20px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(212,175,55,0.15);
    border-radius:20px;
    box-shadow:0 8px 30px rgba(0,0,0,0.3);
}

.founder img{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #D4AF37;
    margin:20px 0;
    box-shadow:0 8px 25px rgba(0,0,0,0.35);
}

.founder p{
    max-width:500px;
    margin:20px auto;
    line-height:1.9;
    font-size:16px;
    color:#bbb;
}

.footer{
    text-align:center;
    padding:60px 25px;
    margin-top:0px;
}

.footer h3{
    color:#D4AF37;
    margin-bottom:35px 0 20px;
    letter-spacing:1px;
}

.footer p{
    color:#bbb;
    margin:8px 0;
}

.footer a{
    color:#D4AF37;
    text-decoration:none;
    font-weight:bold;
}

.footer a:hover{
    color:white;
}

html{
    scroll-behavior:smooth;
}

.badge{
font-size:16px;
font-weight:900;
color:#111;
background:rgba(255,255,255,0.85);
border-radius:8px;
padding:4px 10px
margin-bottom:8px;
}

h2{
    text-shadow:0 0 10px rgba(255,215,0,0.4);
    letter-spacing:1px;
}

.hero{
    animation:heroZoom 12s ease-in-out infinite alternate;
    box-shadow:0 15px 35px rgba(212,175,55,0.08);
}

@keyframes heroZoom{
    from{
        background-size:100%;
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
    to{
        background-size:110%;
    }
}

.footer{
    background:transparent;
    color:#ddd;
    padding:50px 25px;
    text-align:center;
}

.footer h3{
    color:#D4AF37;
    font-size:22px;
    margin:25px 0 15px;
}

.footer p{
    max-width:700px;
    margin:10px auto;
    line-height:1.8;
    font-size:16px;
    color:#bbb;
}

.footer a{
    color:#D4AF37;
    text-decoration:none;
    font-weight:bold;
}

.footer a:hover{
    color:white;
}

.copyright{
    margin-top:35px;
    font-size:14px;
    color:#777;
}

.review-btn{
    color:#D4AF37;
    font-size:16px;
    font-weight:bold;
    text-decoration:none;
    border-bottom:1px solid #D4AF37;
    padding-bottom:5px;
    transition:0.3s;
}

.review-btn:hover{
    color:white;
    border-color:white;
}

.review-btn{
    display:inline-block;
    background:white;
    color:black;
    padding:12px 24px;
    border-radius:25px;
    text-decoration:none;
    font-weight:bold;
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-top:20px;
    transition:0.3s ease;
}

.review-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(212,175,55,0.3);
    border-radius:15px;
    padding:25px;
    max-width:500px;
    margin:25px auto;
    text-align:center;
    backdrop-filter:blur(5px);
}

.review-card{
    background:#111;
    border:1px solid rgba(212,175,55,0.3);
    border-radius:15px;
    padding:25px;
    max-width:500px;
    margin:25px auto;
    text-align:center;
}

.review-card h3{
    color:#D4AF37;
    letter-spacing:3px;
    margin-bottom:15px;
}

.review-card p{
    color:#ddd;
    line-height:1.7;
    font-size:16px;
}

.review-card strong{
    display:block;
    margin-top:15px;
    color:white;
}

.reviews{
    padding:40px 20px;
    text-align:center;
}

.collection-text{
    text-align:center;
    color:#D4AF37;
    margin-bottom:30px;
    letter-spacing:1px;
}
@keyframes heroFade{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.founder{
    text-align:center;
    padding:60px 20px;
    max-width:900px;
    margin:auto;
}

.founder img{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #D4AF37;
    margin-bottom:20px;
}

.founder p{
    max-width:700px;
    margin:0 auto;
    line-height:1.8;
    color:#ddd;
    font-size:17px;
}
.hero h2 span{
color:#D4AF37;
}

.hero .btn{
display:inline-block;
margin-top:25px;
padding:12px 28px;
border-radius:30px;
background:#D4AF37;
color:black;
font-weight:bold;
text-decoration:none;
}

.gallery{
background:#111111;
padding:80px 20px;
}

.section-title{
text-align:center;
font-size:30px;
font-weight:300;
color:#D4AF37;
letter-spacing:1px;
margin-bottom:12px;
text-transform:uppercase;
}

.gallery-subtitle{
text-align:center;
color:#c8c8c8;
font-size:13px;
max-width:90%px;
margin:0 auto 35px auto;
line-height:1.8;
font-style:italic;
}

    .product-card{
background:white;
text-align:center;
margin-bottom:50px;
overflow:hidden;
}

.product-card img{
width:100%;
height:320px;
object-fit:cover;
border-radius:12px;
display:block;
}

.product-card h3{
color:black;
font-size:22px;
margin-top:18px;
margin-bottom:8px;
font-weight:500;
}

.product-card p{
color:#D4AF37;
font-size:20px;
font-weight:bold;
}
font-size:18px;
margin-bottom:40px;
text-align:center;
}

.gallery{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
padding:15px
background:#111111;
}

.gallery img{
width:100%;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:0.3s;
cursor:pointer;
}

.gallery img:hover{
transform:scale(1.03);
}

.product-card{
position:relative;
overflow:hidden;
}

.product-info{
position:absolute;
bottom:10px;
left:10px;
right:10px;
background:rgba(0,0,0,0.75);
padding:8px;
border-radius:10px;
text-align:center;
}

.product-info h3{
margin:0;
font-size:14px;
color:white;
}

.product-info p{
margin:4px 0 0;
color:#D4AF37;
font-weight:bold;
}

.gallery-inquiry{
    text-align:center;
    margin-top:25px;
}

.inquiry-btn{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    transition:0.3s;
}

.inquiry-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(212,175,55,0.35);
}

.lux-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 20px;
background:#0b0b0b;

position:sticky;
top:0;
z-index:1000;
}

.lux-header nav{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:nowrap;
gap:6px;
width:100%;
}

.lux-header nav a{
font-size:10px;
padding:6px 10px;
color:#fff;
text-decoration:none;
font-weight:600;
letter-spacing:1px;

border:1px solid rgba(212,175,55,0.25);
border-radius:25px;
background:rgba(255,255,255,0.03);

transition:all 0.3s ease;
}

.lux-header nav a:hover{
background:rgba(212,175,55,0.15);
color:#D4AF37;
border-color:#D4AF37;
}

.hero-features{
display:flex;
flex-wrap:wrap;
gap:10px;
margin:25px 0;
}

.hero-features span{
background:#151515;
border:1px solid #2b2b2b;
color:#D4AF37;
padding:8px 14px;
border-radius:30px;
font-size:12px;
letter-spacing:0.5px;
}

.hero-buttons{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:25px;
}

.btn{
background:#D4AF37;
color:#111;
padding:14px 24px;
border-radius:30px;
text-decoration:none;
font-size:13px;
font-weight:600;
letter-spacing:1px;
margin-top:0;
}

.btn-outline{
background:transparent;
border:1px solid #D4AF37;
color:#D4AF37;
padding:14px 24px;
border-radius:30px;
text-decoration:none;
font-size:13px;
font-weight:600;
letter-spacing:1px;
}

.hero-stats{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:20px;
}

.hero-stats div{
border:1px solid #2b2b2b;
padding:10px 14px;
border-radius:30px;
text-align:center;
}

.hero-stats h3{
color:#D4AF37;
font-size:16px;
margin:0;
}

.hero-stats p{
color:#fff;
font-size:11px;
margin:2px 0 0 0;
line-height:1.2;
}

.hero-stats{
display:flex;
justify-content:center;
gap:30px;
padding:25px 15px;
}

.hero-stats div{
text-align:center;
}

.hero-stats h3{
color:#D4AF37;
font-size:24px;
margin:0;
}

.hero-stats p{
color:white;
font-size:12px;
margin-top:5px;
}

body{
overflow-x:hidden;
}

.products-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.video-showcase{
width:100%;
margin:30px 0;
padding:0 15px;
}

.video-showcase video{
width:100%;
display:block;
border-radius:15px;
border:1px solid rgba(212,175,55,0.3);
box-shadow:0 10px 25px rgba(212,175,55,0.12);
}

.video-title{
font-size:10px !important;
font-weight:700;
color:#D4AF37;
text-align:center;
letter-spacing:2px;
text-transform:uppercase;
margin-bottom:10px;
}

.hero-instagram{
position:absolute;
right:20px;
bottom:20px;
z-index:10;
}

.hero-instagram img{
width:32px;
height:32px;
display:block;
}
