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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:1.6;
    color:#333333;
    background:#ffffff;
}

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

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

button,
input,
textarea{
    font:inherit;
}

.container{
    width:1200px;
    max-width:95%;
    margin:0 auto;
}
==================================================*/
/*==================================================
    HEADER


.header{
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #e5e5e5;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}
==================================================*/
/*==================================================
    LOGO


.logo a{
    font-size:30px;
    font-weight:bold;
    letter-spacing:2px;
}
==================================================*/
/*==================================================
    MENU

.menu ul{
    display:flex;
    gap:42px;
    list-style:none;
    margin:0;
    padding:0;
}

.menu ul li a{
    font-size:30px;          
    font-weight:600;
    color:#333;
    text-decoration:none;
    transition:0.3s;
    letter-spacing:0.5px;
}

.menu ul li a:hover,
.menu ul li a.active{
    color:#9b7444;
}
==================================================*/

/*==================================================
    MAIN
==================================================*/

main{
    min-height:600px;
}

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

.footer{
    background:#2f2f2f;
    color:#ffffff;
    padding:60px 0 20px;
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer h3{
    margin-bottom:20px;
}

.footer h4{
    margin-bottom:20px;
}

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

.footer ul li a:hover{
    color:#c89b63;
}

.footer-contact p{
    margin-bottom:10px;
}

.copyright{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    font-size:14px;
}

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

.hero{
    min-height:300px;
    display:flex;
    align-items:center;
    background:#f5f5f5;
}

.hero-content{
    width:650px;
}

.hero h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    font-size:22px;
    color:#666;
    margin-bottom:40px;
}

.btn{
    display:inline-block;
    padding:15px 40px;
    background:#8B6B43;
    color:#ffffff;
    border-radius:4px;
    transition:.3s;
}

.btn:hover{
    background:#6d5333;

}

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

.page-header{
    background:#f5f5f5;
    text-align:center;
    padding:30px 20px;
    border-bottom:1px solid #e5e5e5;
}

.page-header h1{
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
    color:#333;
}

.page-header p{
    font-size:18px;
    color:#666;
}

/*==================================================
    ABOUT PAGE
==================================================*/

.about-page{
    padding:20px 0;
}

.about-page .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:8px;
}

.about-content h2{
    font-size:27px;
    margin-bottom:25px;
}

.about-content p{
    margin-bottom:20px;
    color:#666;
    text-align:justify;
}

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

.products{
    padding:80px 0;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.product-card{
    background:#ffffff;
    border:1px solid #eeeeee;
    transition:.3s;
}

.product-card:hover{
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.product-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.product-info{
    padding:25px;
    text-align:center;
}

.product-info h3{
    font-size:24px;
    margin-bottom:10px;
}

.product-info p{
    color:#777777;
}

/*==================================================
    GALLERY
==================================================*/

.gallery{
    padding:80px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:6px;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}

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

/*==================================================
    CATALOG
==================================================*/

.catalog{
    padding:100px 0;
}

.catalog-box{
    max-width:800px;
    margin:auto;
    padding:60px;
    text-align:center;
    border:1px solid #e5e5e5;
    background:#fafafa;
}

.catalog-box h2{
    font-size:40px;
    margin-bottom:25px;
}

.catalog-box p{
    margin-bottom:20px;
    color:#666;
}


/*==================================================
    CONTACT
==================================================*/

.contact{
    padding:80px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-info h2,
.contact-form h2{
    margin-bottom:25px;
}

.contact-item{
    margin-top:25px;
}

.contact-item strong{
    display:block;
    margin-bottom:5px;
}

.contact-item p{
    color:#666;
}

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

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
}

.form-group input,
.form-group textarea{

    width:100%;
    padding:14px;
    border:1px solid #cccccc;
    outline:none;
    font-size:16px;
}

.form-group textarea{
    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#8B6B43;
}