
/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#0b0b0b;
    color:#fff;
    overflow-x:hidden;
}

/* =========================
   COLORS
========================= */

:root{
    --gold:#d4af37;
    --dark:#0b0b0b;
    --red:#c1121f;
    --light:#ffffff;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#000;
    color:#fff;
    padding:10px 0;
    font-size:14px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.top-bar i{
    color:var(--gold);
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:rgba(0,0,0,.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(212,175,55,.15);
}

.navbar-brand img{
    max-height:60px;
}

.nav-link{
    color:#fff !important;
    margin-left:15px;
    font-weight:500;
    transition:.3s;
}

.nav-link:hover{
    color:var(--gold)!important;
}

/* =========================
   HERO
========================= */

.hero-section{
    min-height:90vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.75)
    ),
    url('../images/hero-bg.jpg');
    background-size:cover;
    background-position:center;
}

.hero-section h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:15px;
}

.hero-section h3{
    color:var(--gold);
    margin-bottom:20px;
}

.hero-section p{
    font-size:18px;
    color:#d9d9d9;
    line-height:1.8;
}

.gold-text{
    color:var(--gold);
    letter-spacing:2px;
    margin-bottom:10px;
}

.hero-product{
    max-height:550px;
    filter:
    drop-shadow(0 0 25px rgba(212,175,55,.35));
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

/* =========================
   BUTTONS
========================= */

.btn-gold{
    background:var(--gold);
    color:#000;
    font-weight:700;
    padding:12px 28px;
    border:none;
    border-radius:50px;
    transition:.3s;
}

.btn-gold:hover{
    transform:translateY(-3px);
    box-shadow:
    0 0 20px rgba(212,175,55,.45);
}

.hero-buttons{
    margin-top:25px;
}

.hero-buttons .btn{
    margin-right:12px;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    font-size:2.6rem;
    font-weight:800;
    color:var(--gold);
    position:relative;
    display:inline-block;
}

.section-title::after{
    content:'';
    width:70%;
    height:3px;
    background:var(--gold);
    position:absolute;
    left:15%;
    bottom:-10px;
}

/* =========================
   ABOUT
========================= */

.about-section{
    padding:100px 0;
}

.about-section p{
    color:#cfcfcf;
    line-height:2;
    font-size:17px;
}

/* =========================
   PRODUCTS
========================= */

.products-section{
    padding:100px 0;
    background:#111;
}

.product-card{
    background:
    rgba(255,255,255,.04);
    border:
    1px solid rgba(212,175,55,.15);

    border-radius:20px;
    padding:25px;
    text-align:center;
    transition:.4s;
    backdrop-filter:blur(12px);
}

.product-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:
    0 0 25px rgba(212,175,55,.20);
}

.product-card img{
    max-height:220px;
    object-fit:contain;
}

.product-card h5{
    margin-top:20px;
    color:#fff;
}

/* =========================
   WHY US
========================= */

.why-box{
    background:#141414;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-box i{
    font-size:42px;
    color:var(--gold);
    margin-bottom:20px;
}

/* =========================
   CONTACT
========================= */

.contact-section{
    padding:100px 0;
}

.contact-section p{
    color:#ddd;
    line-height:2;
}

.contact-section iframe{
    border-radius:15px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#000;
    padding:40px 0;
    text-align:center;
    border-top:
    1px solid rgba(212,175,55,.15);
}

footer p{
    margin:0;
    color:#999;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{

    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25d366;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:30px;

    z-index:999;

    box-shadow:
    0 0 20px rgba(37,211,102,.5);
}

.whatsapp-float:hover{
    color:#fff;
    transform:scale(1.08);
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#000;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:50px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.hero-section{
    text-align:center;
    padding:80px 0;
}

.hero-section h1{
    font-size:2.7rem;
}

.hero-product{
    margin-top:40px;
    max-height:350px;
}

}

@media(max-width:768px){

.hero-section h1{
    font-size:2.2rem;
}

.section-title{
    font-size:2rem;
}

.top-bar{
    text-align:center;
}

}

/* Animation Classes */

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* Lightbox */

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox img{
    max-width:85%;
    max-height:85%;
    border-radius:15px;
    border:2px solid #d4af37;
}

.close-lightbox{
    position:absolute;
    top:25px;
    right:40px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}


