        body {
            margin: 0;
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }

       .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6B4226;
    padding: 15px 20px;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    position: relative;
}

.navbar ul li a::after {
    content: "";
    display: block;
    height: 2px;
    background: #FFD700;
    width: 0%;
    transition: width 0.3s;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.search-cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.search-cart input {
    padding: 5px;
    border: none;
    border-radius: 4px;
    margin: 5px 0;
}

.search-cart button {
    background-color: #FFD700;
    color: #6B4226;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

        header {
            background: url('./img/bg\ img\ 1') no-repeat center center/cover;
            text-align: center;
            color: white;
            padding: 100px 20px;
            margin-top: 70px; /* Adjust for navbar height */
        }

        header h1 {
            margin: 0;
            font-size: 48px;
        }

        header p {
            font-size: 20px;
            margin-top: 10px;
        }

        section {
            padding: 50px 20px;
            max-width: 1000px;
            margin: auto;
            text-align: center;
        }

        section h2 {
            margin-bottom: 20px;
            color: #6B4226;
        }

        section p {
            max-width: 800px;
            margin: 0 auto;
        }

        .content img {
            width: 100%;
            max-width: 500px;
            margin: 20px auto;
            display: block;
            border-radius: 10px;
        }

        ul {
            list-style: none;
            padding: 0;
        }

        ul li {
            font-size: 18px;
            margin: 10px 0;
        }

        .call-to-action a {
            background-color: #FFD700;
            color: #6B4226;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 18px;
            display: inline-block;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .call-to-action a:hover {
            background-color: #6B4226;
            color: white;
        }

        footer {
            background-color: #6B4226;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 50px;
        }

        header {
            background: url('./img/offer1') no-repeat center center/cover;
            text-align: center;
            color: white;
            padding: 100px 20px;
            margin-top: 70px; /* Navbar height adjustment */
            height: 100px;
        }

        header h1 {
            font-size: 48px;
            margin: 0;
        }

        header p {
            font-size: 20px;
            margin: 10px 0 0;
        }

        .offers-section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: auto;
            text-align: center;
        }

        .offers-section h2 {
            color: #6B4226;
            margin-bottom: 20px;
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .offer-item {
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .offer-item:hover {
            transform: scale(1.05);
        }

        .offer-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .offer-item h3 {
            margin: 15px 0;
            color: #6B4226;
        }

        .offer-item p {
            padding: 0 10px;
            color: #555;
        }

        .offer-item span {
            display: block;
            font-weight: bold;
            margin: 10px 0;
            color: #FFD700; /* Golden color for price */
        }

        .offer-item button {
            background-color: #FFD700;
            color: #6B4226;
            border: none;
            padding: 10px 15px;
            margin: 10px 0;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .offer-item button:hover {
            background-color: #6B4226;
            color: white;
        }

.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;
  }
}


