body { margin: 0%;;  font-family:Arial;  background: url('images/cover.jpg')  center/cover; }


body.home {
  background: url('images/cover.jpg') no-repeat center center/cover;
  height:100vh;
  color:rgb(255, 255, 255);
}

body.home .container,
.container {
  background: rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  margin: 10px;
  text-align: center;
  color: #ffffff;
  
  
}
.container img{
 height: 10%;
 width: 20%;
 padding: 20px;
 display: center;
} 




header { background:rgb(41, 41, 41); color:white; text-align:center; padding:15px; }
nav { display:flex; justify-content:center; background:#333; }
nav a { color:white; padding:14px; text-decoration:none; }
nav a:hover { background:#555; }
.container { padding:20px; }

.products { display:-ms-inline-grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; }
.product {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  
}
.product img { width:40%; height:80%;; object-fit:cover; border-radius:8px; }

button { padding:10px; background:black; color:white; border:none; cursor:pointer; }
button:hover { background:#444; }

/* CONTACT FORM */
.contact-form {
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:400px;
}
.contact-info {
  background: rgba(0, 0, 0, 0.603);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  
}

/* INPUTS GLASS STYLE */
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.2);
  border: none;
  color: rgb(255, 255, 255);
  height: 40px;
  border-radius: 5px;
  color: #000;
}
/* CART */
.cart {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  height: 100%;
  
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border-left: 1px solid rgba(255,255,255,0.2);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.616);
  color: white;
}

/* FOOTER */
.forecast {
    flex: 1;
    min-width: 120px;
    border: 1px solid #00bcd4;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    color: #ffffff;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    text-align: center;
}

.footer-container {
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #00bcd4;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #0288d1;
}

footer p {
    font-size: 0.9rem;
    margin-top: 10px;
}

 
.header-container {
  display: flex;
  justify-content: space-between; 
  align-items: center;          
  padding: 15px 30px;
  background-color: #ffffff;     
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}
.logo-img {
  height: 200px;;       
  width: 100%;        
  display: block;
  margin: 0 auto;   
  left:0px ;  
}

.logo-link {
  text-decoration: none; 
  display: inline-block;
}
/* Container div */
.button-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

/* Stylish button */
.button-container button{
    padding: 14px 35px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    color: white;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

/* Hover effect */
.button-container button:hover{
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
    background: linear-gradient(135deg, #2575fc, #6a11cb);
}

/* Click effect */
.button-container button:active{
    transform: scale(0.96);
}