* {
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #050505;
    color: #fff;
}

/* HEADER -------------------------------------------------------- */

.header {
    width: 100%;
    padding: 20px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
}

.logo { width: 55px; }

.tagline {
    color: #d4b066;
    font-size: 12px;
    margin-left: 10px;
}

.nav a {
    margin: 0 18px;
    cursor: pointer;
    font-weight: 600;
}

.nav select {
    padding: 4px 6px;
    background: #000;
    color: #d4b066;
    border: 1px solid #444;
}

/* HERO -------------------------------------------------------- */

.hero {
    height: 100vh;
    position: relative;
}

.hero { position: relative; height: 100vh; overflow: hidden; display:flex; align-items:center; }
.hero-video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.hero-overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%); z-index:1; }
.hero-text { position:relative; z-index:2; left:8%; transform: translateY(-10%); text-align:left; color:#fff; }



.btn-gold {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 26px;
    background: #d4b066;
    border-radius: 5px;
    color: #000;
    font-weight: 700;
}

/* FEATURES -------------------------------------------------------- */

.features {
    margin: 120px auto;
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.feature-box {
    width: 32%;
    padding: 40px 20px;
    background: #0d0d0d;
    border-radius: 15px;
    text-align: center;
}

.f-icon {
    width: 70px;
    margin-bottom: 15px;
}

/* PRODUCTS -------------------------------------------------------- */

.products {
    width: 90%;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
}

.product-card {
    background: #0d0d0d;
    width: 32%;
    border-radius: 15px;
    text-align: center;
    padding: 25px;
}

.p-img {
    width: 70%;
    border-radius: 8px;
}

.btn-dark {
    margin-top: 20px;
    padding: 10px 22px;
    background: #111;
    border: 1px solid #555;
    color: #fff;
    border-radius: 6px;
}

/* MODAL -------------------------------------------------------- */

.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: none;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 900px;
    background: #111;
    padding: 30px;
    display: flex;
    border-radius: 15px;
}

.modal-left img {
    width: 350px;
    border-radius: 10px;
}

.modal-right {
    margin-left: 40px;
}

.close {
    position: absolute;
    top: 20px; right: 40px;
    font-size: 36px;
    cursor: pointer;
}

/* ABOUT -------------------------------------------------------- */
.about-text-wide { width:82%; margin:120px auto; color:#ddd; }
.gold { color:#d4b066; font-weight:700; }
.columns { display:flex; gap:40px; margin-top:24px; }
.col { flex:1; line-height:1.6; }
.about-text-wide p { font-size:16px; color:#dfe0df; }

.about-section {
    width: 90%;
    margin: 100px auto;
    display: flex;
}

.about-video video {
    width: 450px;
    border-radius: 15px;
}

.about-text {
    margin-left: 50px;
}

.gold { color: #d4b066; }

/* CONTACT -------------------------------------------------------- */

.contact {
    width: 90%;
    margin: 120px auto;
    background: #0d0d0d;
    padding: 40px;
    border-radius: 15px;
}

/* FOOTER -------------------------------------------------------- */

footer {
    padding: 40px;
    text-align: center;
    opacity: .6;
}
/* Social icons styling (append to bottom) */
.social-icons { margin-top:18px; }
.social-link { display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:8px; background:transparent; transition: transform .15s ease; border:1px solid rgba(207,169,104,0.12); }
.social-link:hover { transform: translateY(-4px); background: rgba(207,169,104,0.05); }
