/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.home {
  background-color: #5c3a21;
  color: saddlebrown;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: #f8f5f2;
    background-image: url("images/top-view-golden-spoon-with-coffee-beans.jpg");
    background-size: 140px;
    background-repeat: repeat;
}

/* Header */
header {
    background: #4e2d1c;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 22px;
    font-weight: 700;
}

/* Navigation */
nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #c4a484;
}

/* Hero Section */
.hero {
    background: #4e2d1c;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Buttons */
button, .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    background: #c4a484;
    color: #4e2d1c;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover, .btn:hover {
    background: #a67c52;
    transform: scale(1.05);
}

.btn:hover {
    background: #a67c52;
    transform: scale(1.05);
}


.btn:hover {
    background: #a67c52;
    transform: scale(1.05);
}


button:hover {
    background: #a67c52;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 70px 10%;
    text-align: center;
}

section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #4e2d1c;
}

/* Products Grid */
#products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Product Card */
.products {
    justify-content: center;
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    flex-wrap: wrap;
    background: sandybrown;
}

.product-card {
    background: saddlebrown;
    width: 100%;
    max-width: 250px;
    margin: auto;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.product:hover {
    transform: translateY(-10px);
}


img {
  max-width: 100%;
  height: auto;
}

.product h3 {
    margin: 15px 0 10px;
}

.product p {
    padding: 0 20px 15px;
}

/* Footer */
footer {
    background: #4e2d1c;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Mobile */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
    }

    body {
    padding: 10px;
  }

  h1 {
    font-size: 20px;
    text-align: center;
  }

  .product-card {
    width: 100%;
  }

    nav {
        margin-top: 10px;
    }

    nav a {
        display: inline-block;
        margin: 10px;
    }

    .hero h2 {
        font-size: 28px;
    }

    section {
        padding: 50px 20px;
    }
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    font-size: 28px;     /* controls icon size */
    width: 70px;         /* circle size */
    height: 70px;
    margin: 0 10px;
    color: white;
    padding: 15px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #c4a484;
    transform: scale(1.2);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    background: #c4a484;
    color: #4e2d1c;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn:hover {
    background: #a67c52;
    transform: scale(1.05);
}

.featured {
    padding: 80px 10%;
    text-align: center;
    background: #fff;
}

.featured h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #4e2d1c;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #f8f5f2;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.product-card img:hover {
  transform: scale(1.05);
}

.map {
  margin-top: 40px;
  text-align: center;
}

.map iframe {
  width: 100%;
  height: 300px;
}

.menu-toggle{
display:none;
font-size:28px;
background:none;
border:none;
color:white;
}

@media (max-width:768px){

.nav-links{
display:none;
flex-direction:column;
background:#4e2d1c;
position:absolute;
top:70px;
right:0;
width:200px;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}

body {
    padding: 10px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  .products {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
  }


}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  padding: 10px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

html, body {
  overflow-x: hidden;
}

.product-list {
  background: #f8f5f2;
  padding: 40px 20px;
  text-align: center;
}

.product-list h2 {
  margin-bottom: 20px;
  color: #4e2d1c;
}

.product-list ul {
  list-style: none;
  padding: 0;
}

.product-list li {
  background: #5c3a21;
  color: white;
  margin: 10px auto;
  padding: 15px;
  width: 80%;
  max-width: 400px;
  border-radius: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.product-list li:hover {
  background: #a67c52;
  transform: scale(1.03);
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.social-icons a:nth-child(1) {background: #25D366;}
.social-icons a:nth-child(2) { background: #1877f2; } /* Facebook */
.social-icons a:nth-child(3) { background: #e4405f; } /* Instagram */
.social-icons a:nth-child(4) { background: #000000; } /* TikTok */
.social-icons a:nth-child(5) { background: #000000; } /* X */
