*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#f3ece9;
  color:#222;
}

/* ================= HEADER ================= */

header{
  display:flex;
  min-height:100vh;
}
/* ================= NAVIGATION ================= */
.navbar {
  margin-bottom: 30px;
  display: flex;
  justify-content: center; 
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 60px; 
}

.nav-links li a {
  text-decoration: none;
  color: #555;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}


.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #b58f87; 
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #b58f87;
}


@media(max-width:768px){
  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links li a {
    font-size: 14px;
  }
}
/* LEFT SIDEBAR */

.sidebar{
  width:110px;
  background:#d8c3bd;
  display:flex;
  justify-content:center;
  align-items:center;
}

.sidebar h1{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color:white;
  letter-spacing:8px;
  font-size:48px;
  font-weight:bold;
}

/* MAIN */

.main{
  flex:1;
  padding:30px 50px;
}

/* LOGO */

.logo{
  text-align:center;
  margin-bottom:30px;
}

.logo img{
  width:220px;
  border-radius:20px;
}

/* BANNER */

.banner{
  position:relative;
  width:100%;
  height: 500x;
  border-radius:50px;
  overflow:hidden;
  margin-bottom:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.banner img{
  width:100%;
  height: 100%;
  object-fit:cover;
}

.banner-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  text-align:center;
  color:white;
  font-weight:bold;
  text-shadow:0 3px 10px rgba(0,0,0,0.4);
}

.banner-text h2{
  font-size:55px;
  margin-bottom:10px;
}

.banner-text p{
  font-size:28px;
  letter-spacing:3px;
}

/* CONTACT */

.contact{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-bottom:60px;
}

.box{
  background:white;
  border-radius:20px;
  padding:25px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  transition:0.3s;
}

.box:hover{
  transform:translateY(-5px);
}

.box h3{
  margin-bottom:15px;
  font-size:24px;
  color:#b58f87;
}

.box p{
  font-size:22px;
  font-weight:bold;
  line-height:1.6;
}

/* PRODUCTS */

.title{
  text-align:center;
  margin-bottom:40px;
}

.title h2{
  font-size:45px;
  color:#b58f87;
}

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.card{
  background:white;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.card img{
  width:100%;
  height:350px;
  object-fit:cover;
}

.card-content{
  padding:20px;
  text-align:center;
}

.card-content h3{
  font-size:28px;
  margin-bottom:10px;
}

.price{
  color:#b58f87;
  font-size:30px;
  font-weight:bold;
  margin-bottom:20px;
}

.btn{
  display:inline-block;
  padding:12px 30px;
  background:black;
  color:white;
  border-radius:50px;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  background:#b58f87;
}

/* FOOTER */

footer{
  margin-top:80px;
  background:black;
  color:white;
  text-align:center;
  padding:35px;
  border-radius:20px 20px 0 0;
}

footer h2{
  font-size:35px;
  margin-bottom:10px;
  letter-spacing:5px;
}

/* RESPONSIVE */

@media(max-width:768px){

  header{
    flex-direction:column;
  }

  .sidebar{
    width:100%;
    height:90px;
  }

  .sidebar h1{
    writing-mode: horizontal-tb;
    transform:none;
    font-size:32px;
  }

  .main{
    padding:20px;
  }

  .banner{
    height:250px;
  }

  .banner-text h2{
    font-size:36px;
  }

  .banner-text p{
    font-size:20px;
  }
  

}