/* ===========================
   G.S. PAGARIA TEX
   STYLE.CSS - PART 1
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#faf8f3;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    padding:80px 0;
}

/* ================= BUTTON ================= */

.btn{

    display:inline-block;

    background:#6b1e24;

    color:#fff;

    padding:14px 30px;

    border-radius:5px;

    transition:.3s;

    font-weight:600;

}

.btn:hover{

    background:#c89b2c;

    color:#000;

}

.btn-light{

    background:#fff;

    color:#6b1e24;

}

.btn-light:hover{

    background:#c89b2c;

    color:#000;

}

/* ================= SECTION TITLE ================= */

.title{

    text-align:center;

    margin-bottom:60px;

}

.title h2{

    font-size:40px;

    color:#6b1e24;

    margin-bottom:10px;

}

.title p{

    color:#777;

    font-size:18px;

}

/* ================= HEADER ================= */

header{

    width:100%;

    background:#fff;

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 2px 12px rgba(0,0,0,.08);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:60px;

}

.logo h2{

    color:#6b1e24;

    font-size:28px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav ul li a{

    color:#333;

    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

    color:#6b1e24;

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

    color:#6b1e24;

}

/* ================= HERO ================= */

.hero{

    height:90vh;

    background:

    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),

    url(images/hero.jpg);

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:#fff;

}

.hero-content{

    max-width:800px;

}

.hero h1{

    font-size:55px;

    margin-bottom:20px;

    line-height:1.2;

}

.hero p{

    font-size:20px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

/* ================= ABOUT ================= */

.about{

    background:#fff;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image img{

    border-radius:12px;

}

.about-content h3{

    font-size:34px;

    color:#6b1e24;

    margin-bottom:20px;

}

.about-content p{

    margin-bottom:18px;

}

.about-boxes{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:30px;

}

.box{

    background:#faf4e6;

    padding:25px;

    text-align:center;

    border-radius:10px;

    transition:.3s;

}

.box:hover{

    background:#6b1e24;

    color:#fff;

}

.box h4{

    font-size:34px;

    color:#c89b2c;

}

/* ================= PRODUCTS ================= */

.products{

    background:#faf8f3;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:#fff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-10px);

}

.card img{

    height:250px;

    object-fit:cover;

}

.card-content{

    padding:25px;

}

.card h3{

    color:#6b1e24;

    margin-bottom:15px;

}

.card p{

    margin-bottom:25px;

}
/* ================= WHY CHOOSE US ================= */

.why{
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature{
    background:#faf4e6;
    text-align:center;
    padding:35px 25px;
    border-radius:10px;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.feature:hover{
    background:#6b1e24;
    color:#fff;
    transform:translateY(-8px);
}

.feature i{
    font-size:45px;
    color:#c89b2c;
    margin-bottom:20px;
}

.feature h3{
    margin-bottom:15px;
}

/* ================= MANUFACTURING ================= */

.manufacturing{
    background:#faf8f3;
}

.timeline{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.step{
    background:#6b1e24;
    color:#fff;
    padding:25px;
    border-radius:10px;
    width:170px;
    text-align:center;
    transition:.3s;
}

.step:hover{
    background:#c89b2c;
    color:#000;
}

.step i{
    font-size:35px;
    margin-bottom:15px;
}

.arrow{
    font-size:35px;
    color:#c89b2c;
    font-weight:bold;
}

/* ================= GALLERY ================= */

.gallery{
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    height:250px;
    object-fit:cover;
    border-radius:10px;
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ================= CONTACT ================= */

.contact{
    background:#faf8f3;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

form{
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

form input,
form textarea{

    width:100%;

    padding:15px;

    margin-bottom:18px;

    border:1px solid #ccc;

    border-radius:5px;

    outline:none;

    font-size:15px;

}

form input:focus,
form textarea:focus{

    border-color:#6b1e24;

}

textarea{

    resize:none;

}

.contact-info h3{

    color:#6b1e24;

    margin-bottom:25px;

    font-size:28px;

}

/* ================= ADDRESS ================= */

.address-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:30px;

}

.address-card{

    background:#fff;

    padding:25px;

    border-radius:10px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.address-card i{

    font-size:30px;

    color:#c89b2c;

    margin-bottom:15px;

}

.address-card h4{

    color:#6b1e24;

    margin-bottom:15px;

}

.contact-details{

    margin:30px 0;

}

.contact-details p{

    margin-bottom:15px;

    font-size:17px;

}

.contact-details i{

    color:#6b1e24;

    width:25px;

}

/* ================= MAP ================= */

.map-box iframe{

    width:100%;

    height:280px;

    border:none;

    border-radius:10px;

}

/* ================= FOOTER ================= */

footer{

    background:#6b1e24;

    color:#fff;

    padding:60px 20px;

    text-align:center;

}

.footer-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.footer-logo img{

    width:70px;

}

.footer-links{

    margin:25px 0;

}

.footer-links a{

    color:#fff;

    margin:0 15px;

    transition:.3s;

}

.footer-links a:hover{

    color:#c89b2c;

}

.footer-social{

    margin:30px 0;

}

.footer-social a{

    width:45px;

    height:45px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    color:#6b1e24;

    border-radius:50%;

    margin:0 8px;

    transition:.3s;

}

.footer-social a:hover{

    background:#c89b2c;

    color:#000;

}

.copyright{

    margin-top:30px;

    font-size:15px;

    color:#ddd;

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.navbar{

    flex-wrap:wrap;

}

.desktop-btn{

    display:none;

}

.menu-btn{

    display:block;

}

nav{

    width:100%;

    display:none;

}

nav.active{

    display:block;

}

nav ul{

    flex-direction:column;

    background:#fff;

    padding:20px;

    margin-top:20px;

    border-top:1px solid #eee;

}

.about-wrapper{

    grid-template-columns:1fr;

}

.contact-grid{

    grid-template-columns:1fr;

}

.address-container{

    grid-template-columns:1fr;

}

.hero h1{

    font-size:42px;

}

}

@media(max-width:768px){

.hero{

    height:80vh;

}

.hero h1{

    font-size:32px;

}

.hero p{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

}

.title h2{

    font-size:30px;

}

.about-boxes{

    grid-template-columns:1fr;

}

.timeline{

    flex-direction:column;

}

.arrow{

    transform:rotate(90deg);

}

.step{

    width:100%;

}

.gallery-grid img{

    height:220px;

}

.logo h2{

    font-size:20px;

}

}

@media(max-width:480px){

.container{

    width:95%;

}

.hero h1{

    font-size:28px;

}

.title h2{

    font-size:26px;

}

.card img{

    height:200px;

}

.gallery-grid img{

    height:180px;

}

form{

    padding:20px;

}

.footer-links a{

    display:block;

    margin:10px 0;

}

.footer-logo{

    flex-direction:column;

}

}   
