/* ============================================
   RBA ENTERPRISES — Dark Luxury / Gold Edition
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root{
    --bg:#d5d5c5;
    --panel:#113d5b;
    --panel-alt:#1c425d;
    --border:rgba(201,162,39,0.18);
    --gold:#c9a227;
    --gold-light:#e8c874;
    --text:#1a1407;
    --muted:#debb5a;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Jost',Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
}

h1,h2,h3,h4{
    font-family:'Playfair Display',serif;
    font-weight:600;
    letter-spacing:0.3px;
}
h2{
    font-weight:300;
    font-size:15px;
}

/* ---------- marquee ---------- */
marquee{
    background:#000;
    color:var(--gold);
    font-family:'Jost',sans-serif;
    font-size:13px;
    letter-spacing:3px;
    padding:8px 0;
    text-transform:uppercase;
    border-bottom:1px solid var(--border);
}

/* ---------- nav ---------- */
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 60px;
    background:#163552;
    border-bottom:1px solid var(--border);
}

nav h2{
    color:var(--text);
    font-size:22px;
    letter-spacing:1px;
}

.logo img{
    height:42px;
    width:auto;
    vertical-align:middle;
    margin-right:8px;
}

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

nav a{
    color:var(--muted);
    text-decoration:none;
    font-size:13px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    transition:.25s;
}

nav a:hover{
    color:var(--gold-light);
}

nav > a i{
    color:var(--gold);
    font-size:18px;
}

/* ---------- hero ---------- */
.hero{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
    background:
        linear-gradient(180deg,rgba(54, 54, 54, 0.55) 0%,rgba(53, 53, 53, 0.78) 60%,rgba(49, 48, 48, 0.92) 100%),
        url("images/lue.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
}

.hero::after{
    content:"";
    position:absolute;
    bottom:60px;
    width:120px;
    height:1px;
    background:linear-gradient(90deg,transparent,var(--gold),transparent);
}

.hero h1{
    font-size:56px;
    font-style:italic;
    line-height:1.2;

    margin-bottom:22px;
    color:var(--text);
    max-width:820px;
    color: #d5d5c5;
    text-transform:capitalize;
}

.hero p{
    font-family:'Jost',sans-serif;
    font-size:16px;
    letter-spacing:1px;
    color:var(--muted);
    width:60%;
    margin-bottom:34px;
    text-transform:uppercase;
}

.hero-buttons{
    margin-top:24px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
    align-items:center;
    max-width:600px;
}

.hero-btn-link{
    text-decoration:none;
    display:inline-block;
}

.hero-btn-link button{
    margin:0;
}

.btn-retail{
    background:#e8c874 !important;
    color:#0b0b0c !important;
}

.btn-works{
    background:rgba(11, 24, 38, 0.85) !important;
    color:var(--gold-light) !important;
    border:1px solid var(--gold) !important;
}

.btn-works:hover{
    background:var(--gold) !important;
    color:#0b0b0c !important;
}

button{
    padding:15px 38px;
    font-size:14px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    border:none;
    border-radius:4px;
    cursor:pointer;
    background:var(--gold);
    color:#0b0b0c;
    font-weight:600;
    transition:.3s;
}

button:hover{
    background:var(--gold-light);
    transform:translateY(-2px);
}

.btn1{
    background:var(--gold);
    color:#0b0b0c;
    border-radius:4px;
}

.btn1:hover{
    background:var(--gold-light);
}

.btn2{
    background:transparent;
    color:var(--text);
    border:1px solid var(--border);
}

.btn2:hover{
    border-color:var(--gold);
    color:var(--gold-light);
}

/* ---------- stats ---------- */
.stats{
    display:flex;
    justify-content:center;
    gap:20px;
    padding:60px 20px;
    flex-wrap:wrap;
    background:var(--bg);
}

.stat-box{
    background:var(--panel);
    border:1px solid var(--border);
    color:var(--text);
    padding:30px 40px;
    border-radius:8px;
    text-align:center;
    min-width:160px;
}

.stat-box h2{
    font-size:2.2rem;
    color:var(--gold-light);
    margin-bottom:6px;
}

.stat-box p{
    font-size:12px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--muted);
}

/* ---------- products ---------- */
.products{
    padding:90px 50px;
    text-align:center;
    background:var(--bg);
}

.products h2{
    font-size:38px;
    color:var(--text);
    position:relative;
    display:inline-block;
    padding-bottom:18px;
}

.products h2::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:70px;
    height:1px;
    background:var(--gold);
}

.product-container{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:50px;
    flex-wrap:wrap;
}

.card,
.product-card{
    width:260px;
    padding:26px;
    border-radius:10px;
    background:var(--panel);
    border:1px solid var(--border);
    box-shadow:0 12px 30px rgba(0,0,0,0.35);
    transition:.3s;
}

.card h3,
.product-card h3{
    margin-bottom:10px;
    color:var(--text);
    font-size:20px;
}

.card p,
.product-card p{
    color:var(--muted);
    font-size:14px;
    line-height:1.5;
}

.card img,
.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:6px;
    margin-bottom:18px;
    border:1px solid var(--border);
}

.card:hover,
.product-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 18px 40px rgba(0,0,0,0.5);
}

/* ---------- our works ---------- */
.our-works{
    text-align:center;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    color:var(--text);
}

.our-works h2{
    font-size:34px;
    margin-bottom:14px;
    color: wheat;
}

.our-works p{
    color:var(--muted);
    margin-bottom:26px;
}

.btn{
    display:inline-block;
    background:var(--gold);
    color:#0b0b0c;
    padding:16px 55px;
    border-radius:7px;
    text-decoration:none;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    font-size:0.8rem;
    margin-top:10px;
    transition:.25s;
}

.btn:hover{
    background:var(--gold-light);
    transform:translateY(-2px);
}

/* ---------- why choose ---------- */
.why-choose{
    text-align:center;
    padding:80px 20px;
    background:var(--bg);
}

.why-choose h2{
    font-size:32px;
    margin-bottom:40px;
    color:var(--text);
}

.why-grid{
    display:flex;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
}

.why-item{
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:8px;
    padding:30px 26px;
    min-width:150px;
    text-align:center;
    transition:.3s;
}

.why-item:hover{
    border-color:var(--gold);
    transform:translateY(-6px);
}

.why-item span{
    font-size:2rem;
    display:block;
    margin-bottom:10px;
}

.why-item p{
    color:var(--muted);
    font-size:13px;
    letter-spacing:0.5px;
    text-transform:uppercase;
}

/* ---------- reviews ---------- */
.reviews{
    text-align:center;
    padding:80px 20px;
    background:var(--panel-alt);
    border-top:1px solid var(--border);
}

.reviews h2{
    font-size:32px;
    color:var(--text);
    margin-bottom:10px;
    color: var(--gold);
}

.reviews-grid{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:35px;
}

.review-card{
    background:var(--panel);
    border:1px solid var(--border);
    padding:28px;
    border-radius:8px;
    max-width:300px;
    text-align:left;
    transition:.3s;
    background-color:white;
}

.review-card:hover{
    border-color:var(--gold);
}

.stars{
    color:var(--gold);
    font-size:1.1rem;
    margin-bottom:12px;
}

.review-card p{
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
    color: #1a1407;
}

.review-card h4{
    margin-top:16px;
    font-size:0.85rem;
    color:var(--gold-light);
    font-family:'Jost',sans-serif;
    font-weight:500;
}

/* ---------- map ---------- */
.map-section{
    text-align:center;
    padding:80px 20px;
    background:var(--bg);
}

.map-section h2{
    font-size:32px;
    color:var(--text);
    margin-bottom:20px;
}

.map-container{
    max-width:900px;
    margin:20px auto 0;
    border-radius:8px;
    overflow:hidden;
    border:1px solid var(--border);
    filter:grayscale(0.3) contrast(1.05);
}

/* ---------- faq ---------- */
.faq{
    padding:80px 10%;
    background:var(--panel-alt);
    border-top:1px solid var(--border);
}

.faq h2{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;
    color:var(--text);
    color:var(--gold)
}

.faq-box{
    background:var(--panel);
    border:1px solid var(--border);
    padding:22px 26px;
    margin-bottom:18px;
    border-radius:8px;
    transition:.25s;
    background-color: whitesmoke;
}

.faq-box:hover{
    border-color:var(--gold);
}

.faq-box h3{
    font-size:17px;
    margin-bottom:10px;
    color:var(--gold-light);
    font-family:'Jost',sans-serif;
    font-weight:500;
}

.faq-box p{
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
    color: #1a1407;
}

/* ---------- footer ---------- */
.footer{
    background:#000;
    color:var(--text);
    padding:60px 20px 20px;
    border-top:1px solid var(--border);
}

.footer-container{
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
    gap:30px;
    max-width:1500px;
    margin:0 auto;
}

.footer h2{
    color:var(--gold-light);
    font-size:26px;
}

.footer h3{
    margin-bottom:15px;
    font-size:14px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--gold);
    font-family:'Jost',sans-serif;
    font-weight:500;
}

.footer p{
    color:var(--muted);
    line-height:1.7;
    font-size:14px;
}

.footer a{
    display:block;
    color:var(--muted);
    text-decoration:none;
    margin:8px 0;
    font-size:14px;
    transition:.2s;
}

.footer a:hover{
    color:var(--gold-light);
}

.footer-bottom{
    text-align:center;
    border-top:1px solid var(--border);
    margin-top:36px;
    padding-top:18px;
    font-size:12px;
    letter-spacing:1px;
    color:var(--muted);
}

/* ---------- responsive ---------- */
@media(max-width:768px){

    nav{
        padding:14px 16px;
        flex-direction:column;
        gap:10px;
    }

    nav h2{
        font-size:18px;
    }

    nav ul{
        display:flex;
        flex-direction:row;
        overflow-x:auto;
        max-width:100%;
        gap:14px;
        padding:4px 6px;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
        white-space:nowrap;
    }

    nav ul::-webkit-scrollbar{
        display:none;
    }

    nav a{
        font-size:11px;
        padding:4px 6px;
    }

    .hero{
        min-height:calc(100vh - 80px);
        height:auto;
        padding:50px 20px;
    }

    .hero h1{
        font-size:28px;
        line-height:1.25;
        margin-bottom:14px;
    }

    .hero p{
        width:100%;
        font-size:13px;
        line-height:1.5;
        margin-bottom:22px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        max-width:320px;
        gap:10px;
    }

    .hero-btn-link{
        width:100%;
        display:block;
    }

    .hero-btn-link button{
        width:100%;
        padding:14px 20px;
        font-size:13px;
    }
}

.whatsapp-float{
    position:fixed;
    bottom:24px;
    right:20px;
    background:#25d366;
    color:#ffffff;
    width:54px;
    height:54px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 20px rgba(37, 211, 102, 0.45);
    z-index:999;
    transition:transform .25s ease, box-shadow .25s ease;
    text-decoration:none;
}

.whatsapp-float:hover{
    background:#20ba5a;
    transform:scale(1.1);
    box-shadow:0 8px 25px rgba(37, 211, 102, 0.65);
}

@media(max-width:768px){
    .whatsapp-float{
        width:48px;
        height:48px;
        bottom:18px;
        right:16px;
        box-shadow:0 4px 14px rgba(0,0,0,0.35);
    }
}

#scrollTopBtn{
    position:fixed;
    bottom:90px;
    right:20px;
    background:var(--gold);
    color:#0b0b0c;
    width:52px;
    height:52px;
    border-radius:50%;
    border:none;
    font-size:12px;
    cursor:pointer;
    display:none;
    align-items:center;
    justify-content:center;
    box-shadow:0 3px 10px rgba(0,0,0,0.3);
    z-index:999;
    transition:.3s;
}

#scrollTopBtn:hover{
    background:var(--gold-light);
    transform:scale(1.08);
}

/* ============================================
   WORKS PAGE — Editorial Gallery Additions
   ============================================ */

.works-hero{
    text-align:center;
    padding:110px 40px 70px;
    background:var(--bg);
    border-bottom:1px solid var(--border);
    background-color: rgb(216, 216, 164);
    color:#000;
}

.works-eyebrow{
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:18px;
}

.works-hero h1{
    font-size:56px;
    color:var(--text);
    margin-bottom:20px;
    color:var(--gold);
    color: var(--gold);
    color:#000
}

.works-hero h1 em{
    color:var(--gold-light);
    color: #000000;

}

.works-sub{
    color:black;
    font-size:16px;
    max-width:520px;
    margin:0 auto;
    line-height:1.7;
}

/* ---------- feature split panel ---------- */
.works-feature{
    display:flex;
    min-height:70vh;
    background:var(--panel-alt);
    background-color: #1c425d;
}

.works-feature-text{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:70px 60px;
}

.works-tag{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:16px;
}

.works-feature-text h2{
    font-size:44px;
    color:var(--text);
    margin-bottom:20px;
    color:#d5d5c5;
}

.works-feature-text p{
    color:var(--muted);
    font-size:16px;
    line-height:1.8;
    max-width:400px;
    margin-bottom:32px;
    color:#0b0b0c
}

.works-feature-image{
    flex:1;
    min-height:420px;
}

.works-feature-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ---------- gallery grid ---------- */
.works-gallery{
    padding:90px 60px;
    background:var(--bg);
    text-align:center;
    background-color: #14344f;
}

.gallery-heading{
    font-size:36px;
    color:var(--text);
    margin-bottom:60px;
    position:relative;
    display:inline-block;
    color: #d5d5c5;
}

.gallery-heading::after{
    content:"";
    position:absolute;
    bottom:-16px;
    left:50%;
    transform:translateX(-50%);
    width:70px;
    height:1px;
    background:var(--gold);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    max-width:1100px;
    margin:0 auto;
    text-align:left;
}

.gallery-item{
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:10px;
    overflow:hidden;
    transition:.3s;
    background-color:bisque;
}

.gallery-item:hover{
    border-color:var(--gold);
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.5);
}

.gallery-img{
    position:relative;
    overflow:hidden;
    height:340px;
}

.gallery-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.gallery-item:hover .gallery-img img{
    transform:scale(1.06);
}

.fig-label{
    position:absolute;
    bottom:14px;
    left:14px;
    background:rgba(11,11,12,0.75);
    color:var(--gold-light);
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    padding:6px 12px;
    border-radius:3px;
    border:1px solid var(--border);
}

.gallery-item h3{
    color:var(--text);
    font-size:20px;
    margin:22px 24px 8px;
}

.gallery-item p{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
    margin:0 24px 24px;
    color:#1a1407;
}

/* ---------- closing CTA ---------- */
.works-cta{
    text-align:center;
    padding:90px 20px;
    background:var(--panel-alt);
    border-top:1px solid var(--border);
}

.works-cta h2{
    font-size:34px;
    color:var(--text);
    margin-bottom:14px;
    color:#a39d92;
}

.works-cta p{
    color:var(--muted);
    margin-bottom:30px;
}

.works-back{
    display:block;
    margin-top:20px;
    color:var(--muted);
    text-decoration:none;
    font-size:14px;
    letter-spacing:0.5px;
    transition:.2s;
}

.works-back:hover{
    color:var(--gold-light);
}

/* ---------- responsive ---------- */
@media(max-width:900px){
    .works-feature{
        flex-direction:column;
    }

    .works-feature-image{
        min-height:300px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .works-hero h1{
        font-size:38px;
    }
}
/* ============================================
   PLACE ORDER PAGE — Additions
   Append this entire block to the end of style.css
   ============================================ */

.order-section{
    min-height:100vh;
    background:var(--bg);
    padding:80px 20px;
    text-align:center;
    background-color: #14344f;
}

.order-section h1{
    color:var(--text);
    font-size:36px;
    margin-bottom:40px;
    color:var(--gold);
}

#orderForm{
    max-width:480px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:16px;
    color:white;
}

#orderForm input,
#orderForm select,
#orderForm textarea{
    padding:14px 16px;
    font-size:15px;
    border-radius:6px;
    border:1px solid var(--border);
    background:var(--panel);
    color:var(--text);
    font-family:'Jost',Arial,sans-serif;
    background-color:white;
}

#orderForm input::placeholder,
#orderForm textarea::placeholder{
    color:var(--muted);
    
}

#orderForm select{
    color:var(--muted);
}

#orderForm textarea{
    height:100px;
    resize:vertical;
    background-color:#d5d5c5;
}

.players-heading{
    color:var(--gold-light);
    font-size:18px;
    text-align:left;
    margin-top:10px;
    margin-bottom:-4px;
}

.player-row{
    display:flex;
    gap:10px;
    align-items:center;
}

.player-row .playerName{
    flex:2;
}

.player-row .playerSize{
    flex:1;
}

.player-row .playerNumber{
    flex:1;
}

.remove-player{
    background:transparent;
    border:1px solid var(--border);
    color:var(--muted);
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    transition:.2s;
}

.remove-player:hover{
    border-color:#c0392b;
    color:#e74c3c;
}

#addPlayerBtn{
    align-self:flex-start;
    background:transparent;
    border:1px solid var(--gold);
    color:var(--gold-light);
    padding:10px 18px;
    border-radius:6px;
    font-size:13px;
    letter-spacing:0.5px;
    text-transform:none;
}

#addPlayerBtn:hover{
    background:var(--gold);
    color:#0b0b0c;
}

.file-label{
    text-align:left;
    color:var(--muted);
    font-size:13px;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.file-label input[type="file"]{
    padding:10px;
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:6px;
    color:var(--muted);
    font-size:13px;
}

#sendBtn{
    margin-top:10px;
}

.back-btn{
    background:transparent;
    border:1px solid var(--border);
    color:var(--muted);
    text-align:center;
    text-decoration:none;
    padding:15px 38px;
    border-radius:6px;
    font-size:18px;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.back-btn:hover{
    border-color:var(--gold);
    color:var(--gold-light);
}

@media(max-width:600px){
    .player-row{
        flex-wrap:wrap;
    }

    .player-row .playerName{
        flex:1 1 100%;
    }

    .player-row .playerSize,
    .player-row .playerNumber{
        flex:1;
    }
}
.hero-buttons button,
.hero-buttons .btn{
    width:250px;
    display:inline-block;
    text-align:center;
}
/* ---------- file upload preview ---------- */
.upload-btn{

display:inline-block;

padding:12px 20px;

background:#0a7cff;

color:white;

border-radius:8px;

cursor:pointer;

margin-bottom:15px;

font-weight:bold;

}

#previewContainer{

display:flex;

flex-wrap:wrap;

gap:12px;

margin-top:15px;

margin-bottom:15px;

}

.preview{

width:110px;

border:1px solid #ddd;

border-radius:10px;

padding:8px;

text-align:center;

position:relative;

background:white;

}

.preview img{

width:100%;

height:80px;

object-fit:cover;

border-radius:8px;

}

.preview p{

font-size:11px;

margin-top:6px;

word-break:break-word;

}

.removeFile{

position:absolute;

top:5px;

right:5px;

background:red;

color:white;

border:none;

width:22px;

height:22px;

border-radius:50%;

cursor:pointer;

font-weight:bold;

}


/* Logo Gold Styling */
nav .logo, nav h2.logo, nav h2.logo a, .logo, .nav-logo {
    color: #e8c874 !important;
    font-family: 'Playfair Display', serif, sans-serif;
    font-weight: 700;
    text-decoration: none;
}
