/* ==========================================
   Employee Payroll
   CWENJEWELRYLLC
   ========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#F9F8F5;
    color:#222;
    line-height:1.7;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

header{
    background:#0E2037;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

nav{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:55px;
}

.logo span{
    color:#D4AF37;
    font-size:22px;
    font-weight:bold;
}

nav ul{
    list-style:none;
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    transition:.3s;
    font-weight:600;
}

nav a:hover{
    color:#D4AF37;
}

/* ================= HERO ================= */

.hero{
    padding:90px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:55px;
    color:#0E2037;
    margin-bottom:20px;
}

.hero-text p{
    color:#555;
    font-size:20px;
    max-width:600px;
    margin-bottom:35px;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:340px;
    margin:auto;
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.18));
}

/* ================= BUTTONS ================= */

.buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{

    background:#D4AF37;
    color:#0E2037;
    padding:16px 34px;
    border-radius:12px;
    font-weight:bold;
    transition:.3s;
}

.btn-primary:hover{
    background:#C39A28;
    transform:translateY(-2px);
}

.btn-outline{

    border:2px solid #0E2037;
    color:#0E2037;
    padding:15px 32px;
    border-radius:12px;
    font-weight:bold;
    transition:.3s;
}

.btn-outline:hover{

    background:#0E2037;
    color:white;
}

/* ================= SECTION ================= */

section{

    padding:80px 0;
}

section h2{

    font-size:38px;
    color:#0E2037;
    text-align:center;
    margin-bottom:50px;
}

/* ================= FEATURES ================= */

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.card{

    background:white;
    border-radius:18px;
    padding:35px;
    box-shadow:0 8px 25px rgba(0,0,0,.07);
    transition:.3s;
}

.card:hover{

    transform:translateY(-8px);
}

.card h3{

    color:#0E2037;
    margin-bottom:15px;
}

.card p{

    color:#666;
}

/* ================= SCREENSHOTS ================= */

.gallery{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.placeholder{

    height:520px;
    border:3px dashed #D4AF37;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:white;
    color:#888;
    font-size:20px;
}

/* ================= PRIVACY ================= */

.privacy-box{

    background:#0E2037;
    color:white;
    text-align:center;
}

.privacy-box h2{

    color:#D4AF37;
}

.privacy-box p{

    max-width:700px;
    margin:0 auto 35px;
    color:#DDD;
    font-size:18px;
}

/* ================= FOOTER ================= */

footer{

    background:#081322;
    color:#BBB;
    text-align:center;
    padding:35px;
    font-size:15px;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

.hero-content{

    flex-direction:column-reverse;
    text-align:center;
}

.hero-text h1{

    font-size:42px;
}

.hero-text p{

    margin:auto auto 30px;
}

.buttons{

    justify-content:center;
}

nav{

    flex-direction:column;
    height:auto;
    padding:20px 0;
    gap:20px;
}

nav ul{

    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero-image img{

    width:230px;
}

}

@media(max-width:600px){

.hero{

    padding:60px 0;
}

.hero-text h1{

    font-size:34px;
}

.hero-text p{

    font-size:17px;
}

section{

    padding:60px 0;
}

section h2{

    font-size:30px;
}

.placeholder{

    height:400px;
}

.btn-primary,
.btn-outline{

    width:100%;
    text-align:center;
}

}