* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Abhaya Libre', serif;
  background-color: #ddd;
}



.navbar {
  position:sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
  background-color: #f4f4f4;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin-left: auto;
  margin: 0;
  padding: 0;
}

.nav-links li {
  font-size: 16px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
  color: black;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: rgb(0, 0, 0)202;
}

.nav-links .active a {
  background: black;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
}
.signin {
  display: flex;
  align-items: center;
  gap: 15px; /* controls spacing */
}

.user-name {
  font-weight: bold;
  color: #000;
}

.cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: black url('cart-icon.png') no-repeat center;
  background-size: 20px;
  cursor: pointer;
}
.cart-btn::before {
  content: '🛒 ';
}

.signin-link {
  background: black;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
}

.contact {
  padding: 80px 10%;
  background-image: url("images/bg2.jpg") ;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 600px;
  width: 100%;
  text-align: left;
}

.contact-container h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.underline {
  display: block;
  width: 80px;
  height: 3px;
  background: #a7a199;
  margin: 0 0 30px 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  background: #f9f9f2;
  font-size: 15px;
  color: #333;
  border-radius: 4px;
}

form input::placeholder,
form textarea::placeholder {
  color: #a7a199;
  font-style: italic;
}

.file-input {
  margin-top: 10px;
}

.send-btn {
  background: #a7a199;
  border: none;
  padding: 14px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  background: #a7a199;
}

footer {
  background-image: url('images/1fd332eb-6529-41f6-bd13-a37853e23afa\ \(1\).jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 20px 20px 20px;
  color: #fff;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px; 
}

.footer-content div {
  flex: 1;
  min-width: 220px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
}

.footer-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 6px;
}

.footer-content p,
.footer-content a {
  font-size: 15px;
  color: #f1f1f1;
  text-decoration: none;
  line-height: 1.6;
  margin: 4px 0;
}

.footer-content a:hover {
  text-decoration: underline;
  color: #ddd;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 10px;
  padding-top: 15px;
  font-size: 13px;
  color: #ccc;
}


@media (max-width: 768px) {

  
  .sidebar { width: 100%; left: -100%; }
  .sidebar.active { left: 0; }
  .sidebar-menu a { font-size: 16px; }

  .topbar { padding: 10px 15px; }
  .topbar .logo { font-size: 16px; }
  .topbar .right span { display: none; }


  .contact-container form input,
  .contact-container form textarea,
  .contact-container form button { width: 100%; }

 
  .contact-container h2 { font-size: 20px; }

}
