@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #4b3c2a;
  background: #fdfdfb;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #fff;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #4b3c2a;
  font-weight: bold;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(-45deg, #4b3c2a, #c9a97f, #7d5a3b, #e6d1b3);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating Shapes (steam/bubbles) */
.shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shapes span {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  bottom: -60px;
  animation: floatUp 12s linear infinite;
}

.shapes span:nth-child(1) {
  left: 15%;
  width: 25px;
  height: 25px;
  animation-delay: 0s;
}
.shapes span:nth-child(2) {
  left: 35%;
  width: 35px;
  height: 35px;
  animation-delay: 3s;
  animation-duration: 14s;
}
.shapes span:nth-child(3) {
  left: 55%;
  width: 20px;
  height: 20px;
  animation-delay: 6s;
  animation-duration: 10s;
}
.shapes span:nth-child(4) {
  left: 75%;
  width: 50px;
  height: 50px;
  animation-delay: 2s;
  animation-duration: 16s;
}
.shapes span:nth-child(5) {
  left: 90%;
  width: 30px;
  height: 30px;
  animation-delay: 5s;
  animation-duration: 12s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  30% { opacity: 0.5; }
  100% {
    transform: translateY(-400px) scale(1.5);
    opacity: 0;
  }
}

.hero-text {
  position: relative;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-shadow: 0 4px 24px #4b3c2a, 0 2px 8px #c9a97f;
  text-align: center;
  letter-spacing: 1px;
  z-index: 2;
}


/* About Us */
.about {
  text-align: center;
  padding: 70px 20px;
  max-width: 900px;
  margin: auto;
  background: #f7f3ef;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(201, 169, 127, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(201, 169, 127, 0.35);
}

.about h2 {
  margin-bottom: 20px;
  font-size: 32px;
  color: #4b3c2a;
  position: relative;
}

.about h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #c9a97f, #4b3c2a);
  margin: 10px auto 0;
  border-radius: 2px;
}

.about p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a4631;
}

/* Best Sellers */
.best-sellers {
  text-align: center;
  padding: 50px 20px;
}

.best-sellers h2 {
  margin-bottom: 30px;
  font-size: 26px;
}

.products {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product {
  width: 200px;
  text-align: center;
}

.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1);
  box-shadow: 0 2px 8px rgba(201, 169, 127, 0.15);
  background-color: #c9a97f;
}

.product-img:hover {
  transform: scale(1.07);
  box-shadow: 0 0 24px 4px #c9a97f, 0 2px 16px rgba(75, 60, 42, 0.15);
  z-index: 2;
}

/* Contact Us */
.contact {
  padding: 70px 40px;
  background: #f7f3ef;
  border-top: 3px solid #c9a97f;
}

.contact h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #4b3c2a;
  position: relative;
}

.contact h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #c9a97f, #4b3c2a);
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin: auto;
}

.contact-info, 
.contact-extra {
  flex: 1;
  min-width: 300px;
}

.contact-info p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #5a4631;
  line-height: 1.8;
}

.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  color: #4b3c2a;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-extra p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #5a4631;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 10px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 2px 6px rgba(201, 169, 127, 0.5));
}