* {
  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; 
}

.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;
}




.about {
 display: flex;
  min-height: 100vh; 
  background: #333;
  padding: 0;
}


.about-us-section {
  display: flex;
  min-height: 100vh;
  padding: 80px 100px;
}

.about-text {
 flex: 1; 
  padding: 50px;
  display: flex;
  flex-direction: column;
  background-image: url(images/bg2.jpg);
  background-size: cover;
  background-position: center;
}


.about-text h1 {
  font-family: 'Abhaya Libre', serif;
  font-weight: 800; 
  font-size: 48px;
  padding: 20px;
  margin-bottom: 30px;
  color: #000;
  
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  padding: 20px;
  margin-bottom: 20px;
  color: #333;
}

.about-text p strong {
  font-weight: bold;
  color: #000;
}
.about-image {
 flex: 1;  
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
width: 100%;      
  height: 100%;     
  object-fit: cover  
}




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;
}
.btn-delete {
    background: #ef4444;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.btn-delete:hover {
    background: #b91c1c;
}

