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

header{
position:sticky;
top:0;
z-index:1000;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #3a3a3a;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

h1 {
  letter-spacing: 1px;
}

h2 {
  letter-spacing: 0.5px;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-brand {
  flex-wrap: nowrap;
}
.logo-brand h1 {
  white-space: nowrap;
}


.logo-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
} 

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: burlywood;
}
.menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.menu a {
  text-decoration: none;
  color: aliceblue;
  font-weight: 30;
}


.hero {
  padding: 120px 40px;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url(https://a-z-animals.com/media/2021/05/Syrian-Hamster-eating.jpg) center/cover no-repeat;
}
.hero h2 {
  font-size: 35px;
  margin-bottom: 20px;
}

.seo{
padding:60px 40px;
max-width:800px;
margin:auto;
text-align:center;
line-height:1.8;
}

.products {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.card {
  background: #f0f0f0;
  padding: 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}



.testimoni {
  padding: 80px 20px;
  text-align: center;
  background: #fff9f5;
}

.slider {
  overflow: hidden;
  max-width: 350px;
  margin: 40px auto 20px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  display: block;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.dots span.active {
  background: #c89b7b;
  transform: scale(1.2);
}




.social {
  padding: 60px 40px;
  text-align: center;
  background: burlywood;
}

.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-links a {
  font-size: 32px;
  color: black;
  transition: 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}




footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  background: burlywood;
}

.hamburger{
display:none;
font-size:28px;
background:none;
border:none;
cursor:pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: black;
  margin: 5px 0;
  transition: 0.3s ease;
}


@media (max-width: 768px) {

  @media (max-width:768px){

.products{
  display:flex;
  overflow-x:auto;
  gap:20px;
  padding:20px;
  scroll-snap-type:x mandatory;
}

.card{
  min-width:250px;
  flex-shrink:0;
  scroll-snap-align:start;
}

.products::-webkit-scrollbar{
  display:none;
}

}

  .logo-brand h1 {
  font-size: clamp(18px, 4vw, 28px);
  }

  .logo-brand img {
    width: 30px;
    height: 30px;
  }

  .menu{
    display:none;
    position:absolute;
    top:80px;
    right:0;
    background:burlywood;
    width:200px;
    border-radius:10px;
  }

  .menu ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .menu a:hover {
  opacity: 0.7;
  }

  .hamburger {
    display: block;
  }

  .menu.active {
    display: block;
  }

  .products {
    grid-template-columns: 1fr;
  }
}

.wa-float{
position: fixed;
bottom: 20px;
right: 20px;
background: #25D366;
color: white;
display: flex;
align-items: center;
gap: 10px;
padding: 12px 18px;
border-radius: 50px;
font-size: 16px;
text-decoration: none;
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
z-index: 9999;
transition: 0.3s;
}

.wa-float i{
font-size: 22px;
}

.wa-float:hover{
transform: scale(1.05);
}

.wa-float img {
  width: 30px;
}