
body {
    margin: 0;
    font-family: Arial, sans-serif;

   
    background-image: url('./images/fons.png');
    background-size: cover;        
    background-position: center;   
    background-attachment: fixed;  
    background-repeat: no-repeat;  
}
body::before {
    content: "";
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.2); 
    z-index: -1; 
}


header {
    position: sticky; 
    top: 0;         
    width: 100%;
    background: rgba(255,255,255,0.95); 
    z-index: 999;     
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header.scrolled {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.box-list-H{
  padding-right: 20px;
}
header ul {
    display:flex;
    list-style:none;
    gap:20px;
}


header a {
    padding-left: 10px;
    text-decoration:none;
    color:black;
    font-weight:500;
}


.buttun_style{
    padding:8px 15px;
    padding-right: 15px;
    border-radius:8px;
    border:1px solid #333;
    cursor:pointer;
}

/* MAIN PRODUCTS */
.main {
    padding:40px 20px;
    
}

.products {
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    justify-content:center;
    list-style: none;
}

.card {
    background:white;
    width:260px;
    padding:15px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.3s;
}

.card:hover {
    transform:translateY(-10px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.card img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:8px;
}

.price{
    color:green;
    font-weight:bold;
    margin:10px 0;
}

button{
    background:#8b5a2b;
    color:white;
    border:none;
    padding:10px 15px;
    border-radius:5px;
    cursor:pointer;
}

button:hover{
    background:#6e4521;
}

/* CONTACT */
.contact{
    display:flex;
    justify-content:center;
    padding:40px -1px;
}

.contact-box{
    background:rgba(255,255,255,0.9);
    padding:40px;
    border-radius:10px;
    max-width:600px;
    width:100%;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.contact-form input, .contact-form textarea{
    padding:12px;
    border-radius:6px;
    border:1px solid #ccc;
    font-size:16px;
    margin-bottom:10px;
    width:100%;
}

/* REVIEWS */
.reviews-section{
    padding:40px;
}

.reviews-container{
    display:flex;
    gap:40px;
    justify-content:center;
    flex-wrap:wrap;
}

.review-form-box, .reviews-list{
    background:rgba(255,255,255,0.9);
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.review-form-box{
    width:350px;
}

.review-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.review-form input, .review-form textarea{
    padding:10px;
    border-radius:6px;
    border:1px solid #ccc;
}

.review-form button{
    background:#8b5a2b;
    color:white;
    padding:10px;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.review-form button:hover{
    background:#6e4521;
}

.reviews-list{
    width:400px;
    height:350px;
    overflow-y:auto;
}

.review{
    background:rgba(245,245,245,0.9);
    padding:15px;
    border-radius:8px;
    margin-top:15px;
}

.review span{
    display:block;
    margin-top:8px;
    font-weight:bold;
}

/* FOOTER */

.footer{
background:#111;
color:white;
padding:50px 20px 20px;
margin-top:30px;
}

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

.footer-box{
flex:1;
min-width:220px;
}

.footer-box h2{
color:#d4a373;
margin-bottom:10px;
}

.footer-box h3{
margin-bottom:15px;
color:#d4a373;
}

.footer-box p{
line-height:1.6;
}

.footer-box ul{
list-style:none;
padding:0;
}

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

.footer-box ul li a{
text-decoration:none;
color:white;
transition:0.3s;
}

.footer-box ul li a:hover

/* social icons */

.socials{
display:flex;
gap:15px;
font-size:22px;
}

.socials a{
text-decoration:none;
color:white;
transition:0.3s;
}

.socials a:hover{
color:#d4a373;
transform:scale(1.2);
}

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


/* MODAL */
.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.modal-content{
    background:white;
    padding:30px;
    border-radius:10px;
    width:400px;
    text-align:center;
}

.close{
    font-size:28px;
    cursor:pointer;
    float:right;
}

/* ABOUT PAGE */

.about-hero {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
}

.about-company {
    display: flex;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.about-text {
    background-color: #8b5a2b;
    color: #ccc;
    border-radius: 30px;
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

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

.about-features {
    padding: 30px;
    text-align: center;
}
.about-col{
    color: #111;
    padding: 5px;
    background-color:white;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    margin-left: 38%;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-stats {
    background: #8b5a2b;
    color: white;
    padding: 60px 20px;
    width: 600px;
    margin-left: 33%;
    border-radius: 10px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: center;
}

.stat h2 {
    font-size: 40px;
    margin-bottom: 5px;
}

/* CONTACT PAGE */

.contact-hero{
height:250px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
background:rgba(0,0,0,0.6);
color:white;
text-align:center;
}

.contact-page{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
padding:80px 20px;
max-width:1100px;
margin:auto;
}

.contact-info{
background:white;
padding:30px;
border-radius:10px;
width:350px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h2{
margin-bottom:20px;
}

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

.contact-form-box{
background:white;
padding:30px;
border-radius:10px;
width:400px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.map{
padding:60px 20px;
text-align:center;
}

.map-box{
max-width:900px;
margin:auto;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
