/* ===========================
   KINGSMAN LEATHER
   Premium Leather Manufacturer
   style.css
=========================== */

:root{

    --primary:#3e2723;
    --secondary:#8d6e63;
    --accent:#b88a44;
    --light:#f7f4f1;
    --white:#ffffff;
    --dark:#121212;
    --gray:#666666;

}

/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===========================
   GLOBAL
=========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-family:'Cinzel',serif;
    font-size:2.5rem;
    color:var(--primary);
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:var(--gray);
}

.section-title.light h2,
.section-title.light p{
    color:#fff;
}

/* ===========================
   HEADER
=========================== */

.header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:rgba(18,18,18,.92);
    backdrop-filter:blur(10px);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:75px;
    width:auto;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--accent);
}

.quote-btn{
    background:var(--accent);
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    background:var(--secondary);
}

/* ===========================
   HERO
=========================== */

.hero{

    height:100vh;

    background:
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1800&q=80')
    center center/cover no-repeat;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:950px;
    padding:20px;
}

.hero h1{
    font-family:'Cinzel',serif;
    font-size:3.8rem;
    line-height:1.2;
    color:#fff;
    margin-bottom:25px;
}

.hero p{
    color:#fff;
    font-size:1.15rem;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{

    background:var(--accent);
    color:#fff;

    padding:15px 35px;
    border-radius:6px;
    font-weight:600;
}

.btn-secondary{

    background:transparent;
    border:2px solid #fff;
    color:#fff;

    padding:15px 35px;
    border-radius:6px;
    font-weight:600;
}

.btn-primary:hover,
.btn-secondary:hover{
    opacity:.9;
}

/* ===========================
   FEATURES
=========================== */

.features-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;

}

.feature-box{

    background:#fff;
    padding:35px 25px;
    text-align:center;

    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-6px);
}

.feature-box i{

    font-size:45px;
    color:var(--accent);

    margin-bottom:15px;
}

.feature-box h3{
    margin-bottom:12px;
    color:var(--primary);
}

/* ===========================
   PRODUCTS
=========================== */

.products-section{
    background:var(--light);
}

.product-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.product-card{

    background:#fff;
    border-radius:12px;
    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.product-card:hover{
    transform:translateY(-6px);
}

.product-card img{

    width:100%;
    height:250px;
    object-fit:cover;
}

.product-content{
    padding:25px;
}

.product-content h3{
    color:var(--primary);
    margin-bottom:10px;
}

.product-content p{
    margin-bottom:15px;
}

.product-content a{

    background:var(--primary);
    color:#fff;

    display:inline-block;
    padding:10px 20px;

    border-radius:5px;
}

.product-content a:hover{
    background:var(--accent);
}

/* ===========================
   PRIVATE LABEL
=========================== */

.dark-section{
    background:var(--primary);
}

.private-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.private-grid img{
    border-radius:12px;
}

.benefits li{

    color:#fff;
    font-size:18px;

    margin-bottom:15px;
    padding-left:30px;

    position:relative;
}

.benefits li::before{

    content:"✓";
    color:var(--accent);

    position:absolute;
    left:0;
}

/* ===========================
   CORPORATE
=========================== */

.corporate-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.corporate-box{

    background:#fff;
    text-align:center;

    padding:35px;

    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.corporate-box i{

    font-size:42px;
    color:var(--accent);

    margin-bottom:15px;
}

.corporate-box h3{
    color:var(--primary);
}

/* ===========================
   EXPORT
=========================== */

.export-section{
    background:var(--light);
}

.countries{

    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.countries span{

    background:var(--primary);
    color:#fff;

    padding:12px 20px;
    border-radius:50px;
}

/* ===========================
   CTA
=========================== */

.cta-section{

    background:
    linear-gradient(
    rgba(0,0,0,.7),
    rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1800&q=80');

    background-size:cover;
    background-position:center;

    text-align:center;
    padding:100px 20px;
}

.cta-section h2{

    color:#fff;
    font-size:2.8rem;

    margin-bottom:20px;
}

.cta-section p{

    color:#fff;
    max-width:700px;
    margin:auto auto 30px;
}

.cta-btn{

    background:var(--accent);
    color:#fff;

    padding:15px 35px;
    border-radius:6px;

    font-weight:600;
}

/* ===========================
   FOOTER
=========================== */

footer{

    background:#111;
    color:#fff;
}

.footer-grid{

    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    padding:70px 0;
}

.footer-logo{
    max-width:180px;
    margin-bottom:15px;
}

footer h4{
    margin-bottom:20px;
    color:var(--accent);
}

footer ul li{
    margin-bottom:10px;
}

footer a{
    color:#fff;
}

footer a:hover{
    color:var(--accent);
}

.copyright{

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;

    padding:20px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

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

    .hero h1{
        font-size:3rem;
    }

}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        padding-top:120px;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .cta-section h2{
        font-size:2rem;
    }

}

@media(max-width:480px){

    .logo img{
        height:60px;
    }

    .hero h1{
        font-size:1.8rem;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

}

/* CONTACT PAGE */

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:15px;
    font-family:'Poppins',sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#8d6e63;
}

.submit-btn{
    background:#3e2723;
    color:#fff;
    border:none;
    padding:15px 30px;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
}

.submit-btn:hover{
    background:#8d6e63;
}

.contact-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-card h3{
    margin-bottom:20px;
    color:#3e2723;
}

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    align-items:flex-start;
}

.contact-item i{
    font-size:24px;
    color:#b88a44;
    margin-top:4px;
}

.benefits-dark{
    list-style:none;
    padding:0;
}

.benefits-dark li{
    margin-bottom:10px;
    padding-left:22px;
    position:relative;
}

.benefits-dark li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#b88a44;
}

/* LEGAL PAGES */

.legal-content{
    background:#ffffff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.legal-content h2{
    color:#3e2723;
    margin-bottom:20px;
}

.legal-content h3{
    color:#3e2723;
    margin-top:30px;
    margin-bottom:10px;
}

.legal-content p,
.legal-content li{
    line-height:1.8;
    margin-bottom:12px;
}

.legal-content ul{
    padding-left:20px;
    list-style:disc;
}

