
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f3f3f3;
  
  
 
}

/* Top Navigation */
.top-nav {
  background: #232f3e;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  width: 100px;
  margin-right: 20px;
}

input[type="text"] {
  flex: 1;
  padding: 8px;
  margin-right: 10px;
  border: none;
  border-radius: 4px;
}

button {
  padding: 8px 15px;
  background: #febd69;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}


.nav-links a {
  margin-left: 15px;
  color: white;
  text-decoration: none;
}

/* Banner */
.banner{
    font-family: Arial, sans-serif;
  background: #f3f3f3;
   height: 100vh;
  background-image: url('i/main.jpg'); /* ✅ Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;

  
  
 
  
}
.banner h1 {
  
  font-size: 48px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.banner-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding:  10px;
}

.prime-logo {
  font-size: 20px;
  color: #00a8e1;
  font-weight: bold;
  text-transform: uppercase;
  
  
}

/* Categories */
.categories {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.category {
  width: 30%;
  background: white;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.category h2 {
  margin-bottom: 15px;
  color: #111;
}

.items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.items div {
  width: 45%;
  text-align: center;
}

.items img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.items p {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}

.amazon-footer {
  background: #0f1111;
  color: #ddd;
  font-family: Arial, sans-serif;
  padding: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.footer-links div {
  min-width: 140px;
}

.footer-links h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-links a {
  display: block;
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
  margin: 4px 0;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 15px;
  border-top: 1px solid #333;
  padding-top: 10px;
}

/* Mobile view */
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    text-align: center;
  }
}
/* ✅ Mobile Responsive Design */
@media (max-width: 768px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-nav input[type="text"] {
    width: 100%;
    margin: 10px 0;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
    margin-top: 5px;
  }

  .banner {
    height: 50vh;
    background-size: cover;
    padding: 20px;
  }

  .banner h1 {
    font-size: 28px;
    padding: 10px;
  }

  .categories {
    flex-direction: column;
    padding: 20px;
  }

  .category {
    width: 100%;
  }

  .items div {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}

/* ✅ Very Small Phones */
@media (max-width: 480px) {
  .banner h1 {
    font-size: 20px;
  }
  .prime-logo {
    font-size: 16px;
  }
}
