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

body{
  font-family: Georgia, serif;
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

.container{
  width: 90%;
  margin: auto;
}

/* =========================
   NAVBAR
========================= */
.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: white;
}

.navbar-brand{
  font-size: 45px;
  font-weight: bold;
  font-family: petrona;
}

.navbar-nav{
  display: flex;
  gap: 30px;
}

.navbar-nav a{
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* =========================
   HERO SECTION
========================= */
.hero{
  background: url("foto/sikil3.jpg") center/cover no-repeat;
  height: 650px;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.hero-content{
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content h1{
  font-size: 65px;
  margin-bottom: 20px;
}

.hero-content p{
  font-size: 22px;
  margin-bottom: 25px;
}

.button{
  display: inline-block;
  padding: 10px 25px;
  background: #021648;
  border-radius: 20px;
  color: white;
  text-decoration: none;
}

/* =========================
   TITLE
========================= */
.section-title{
  text-align: center;
  font-size: 45px;
  font-family: petrona;
  margin: 80px 0 40px;
}

/* =========================
   CARD
========================= */
.card-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px;
}

.card,
.card1,
.card2,
.card3{
  width: 250px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.card:hover,
.card1:hover,
.card2:hover,
.card3:hover{
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card img,
.card1 img,
.card2 img,
.card3 img{
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card h3,
.card1 h3,
.card2 h3,
.card3 h3{
  margin: 15px 0 10px;
}

.card p,
.card1 p,
.card2 p,
.card3 p{
  margin-bottom: 20px;
  font-weight: bold;
}

/* =========================
   TEXT CONTENT
========================= */
.text-content{
  width: 80%;
  margin: 80px auto;
}

.text-content p{
  margin-bottom: 30px;
  font-size: 20px;
}

/* =========================
   PAGE 2 PRODUCT GRID
========================= */
.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
  padding: 40px;
}

/* =========================
   PRODUCT DETAIL PAGE
========================= */
.product-detail{
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 50px;
  align-items: flex-start;
}

.product-image img{
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-info{
  flex: 1;
}

.product-info h2{
  font-size: 40px;
  margin-bottom: 10px;
}

.product-info h4{
  font-size: 28px;
  margin-bottom: 20px;
}

.product-info p{
  margin-bottom: 20px;
  font-size: 18px;
}

.size{
  margin-bottom: 20px;
}

.buy-btn{
  display: inline-block;
  padding: 12px 30px;
  background: #d6d5d5;
  border-radius: 25px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: 0.3s;
}

.buy-btn:hover{
  background: #76767d;
  color: white;
}

.desc{
  margin-top: 30px;
}

/* =========================
   FOOTER
========================= */
footer{
  background: #0b163f;
  color: white;
  padding: 40px 50px;
  margin-top: 80px;
}

.footer-container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo h2{
  font-size: 40px;
  margin-bottom: 20px;
}

.socials{
  display: flex;
  gap: 15px;
}

.socials img{
  width: 30px;
  transition: 0.3s;
}

.socials img:hover{
  transform: scale(1.2);
}

.by{
  display: flex;
  align-items: center;
}

.address{
  display: flex;
  align-items: center;
  gap: 10px;
}

.address img{
  width: 25px;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 768px){

  .navbar{
    flex-direction: column;
    gap: 20px;
  }

  .hero-content h1{
    font-size: 40px;
  }

  .product-detail{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

}