html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}


body {
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #6B4226;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
}
.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}
.search-cart {
    display: flex;
    gap: 5px;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}
#menu-toggle {
    display: none;
}
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #d4a373;
        padding: 10px 0;
    }
    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }
    .search-cart {
        width: 100%;
        margin-top: 10px;
    }
    .search-cart input {
        flex: 1;
    }
}



#Carousel {
  margin-top: 0;
  padding-top: 0;
}

#Carousel .carousel-item img {
  width: 100%;
  height: 500px; 
  object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 20px;
}

.carousel-item {
  transition: opacity 0.8s ease-in-out;
}

.content-section {
    padding: 50px 20px;
    text-align: center;
}

.content-section:nth-child(even) {
    background-color: #F5F5F5;
}

.content-section h2 {
    margin-bottom: 20px;
    color: #6B4226;
    background: linear-gradient(to right, #FFD700, #f8d57e);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
}

.content-section p {
    max-width: 800px;
    margin: 0 auto;
}

.featured-section {
    text-align: center;
    margin: 40px auto;
    max-width: 1200px;
}

.featured-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.featured-items .item {
    background: #fff3e0;
    border-radius: 10px;
    padding: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.featured-items .item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.specials-highlight {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff8f0;
}

.specials-highlight h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #5d4037;
}

.specials-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.special-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.special-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.special-info {
    padding: 15px;
}

.special-info h3 {
    margin: 0 0 5px;
    color: #6d4c41;
}

.special-info p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: #d84315;
    font-size: 1.1em;
}

.favorites-section {
    text-align: center;
    padding: 40px 20px;
}

.favorites-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.favorite-item {
    background: #fff3e0;
    border-radius: 10px;
    padding: 15px;
    width: 220px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.favorite-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.favorite-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.favorite-item h3 {
    margin-bottom: 5px;
    color: #5d4037;
}

/* Footer Styling */
/* Footer General */
.site-footer {
  background: #4b2c20; /* rich brown */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.site-footer a {
  color: #ffd27f;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd27f;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section form {
  display: flex;
  gap: 5px;
}

.footer-section input[type="email"] {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
}

.footer-section button {
  background: #ffd27f;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.footer-section button:hover {
  background: #ffbf40;
}

.social-links li {
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}


.testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.testimonial {
    background-color: #fff3e0;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    color: #6B4226;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .search-cart {
        width: 100%;
        justify-content: flex-start;
    }

    .search-cart input {
        width: 60%;
    }

    .carousel img {
        height: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #6B4226;
        padding: 10px 0;
    }

    #nav-links li {
        text-align: left;
        padding: 10px 20px;
    }

    #nav-links.show {
        display: flex;
    }

    .search-cart {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .navbar .logo {
        font-size: 20px;
    }

    .navbar ul li a {
        font-size: 14px;
    }

    .search-cart input {
        width: 100%;
        margin-bottom: 5px;
    }

    .search-cart button {
        width: 100%;
    }

    .content-section {
        padding: 30px 15px;
    }

    .testimonial {
        width: 90%;
    }
}


