/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* Top Banner */
.top-banner {
  background: #800000;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
 
}
 
/* Navbar */
.navbar {
  display:left ;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 40px;
  background: #e0e0e0;
}
 
/* Logo */
.logo {
  font-size: 20px;
  font-weight: bold;
  justify-self: start;
}
 
/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-self: right;
}
 
.nav-links li a {
  text-decoration: none;
  color: #000;
  /* font-size: 16px; */
  font-weight: 500;
  transition: color 0.3s;
}
 
.nav-links li a:hover {
  color: #a83232;
}
 
/* Cart */
.cart {
  font-size: 22px;
  cursor: pointer;
  justify-self: end;
 
}
 
/* Hero Section */
.hero {
  height: 90vh;
  background: url("../assets/images/prada1.jpg") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fdfafa;
  padding: 20px;
}
 
.hero .tagline {
  font-size: 18px;
  color: #f1efef;
  margin-bottom: 10px;
}
 
.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}
 
.hero .subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}
 
.hero .buttons button {
  background: #faf8f8;
  color: #0e0d0d;
  border: none;
  padding: 12px 25px;
  margin: 5px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
 
.hero .buttons button:hover {
  background: #800000;
  transform: scale(1.05);
}
 
  body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 5px;
  background-color: #f9f9f9;
}
 
h1 {
  text-align: center;
  margin-bottom: 80px;
}
.products-intro {
  text-align: center;  
  margin: 50px auto;    
  padding: 20px;
}
 
.products-intro h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}
 
.products-intro p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
 
 
/* ===== Collection Section ===== */
.collection-section {
  padding: 50px 20px;
  background: #f7f7f7;
}
 
.collection-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
 
/* ===== Collection Cards ===== */
.collection-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
 
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  transition: transform 0.4s ease;
}
 
/* Hover zoom effect */
.collection-card:hover img {
  transform: scale(1.05);
}
 
/* Dark overlay */
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 15px;
  z-index: 1;
}
 
/* ===== Card Content ===== */
.card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}
 
.card-content h2,
.card-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
 
.card-content p {
  font-size: 14px;
  margin-bottom: 15px;
}
 
/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-radius: 25px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
 
.btn:hover {
  background: #fff;
  color: #000;
}
 
/* ===== Large Card (spans two rows) ===== */
.large-card {
  grid-row: span 2;
}
 
/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .collection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
 
  .large-card {
    grid-row: auto;
  }
}
 
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
}
 
.gallery img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
 
.gallery img:hover {
  transform: scale(1.05);
}
 
/* Newsletter Section */
.newsletter {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}
 
.newsletter h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
 
.newsletter p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}
 
/* Form Styling */
.newsletter-form {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}
 
.newsletter-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}
 
.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  margin-bottom: 20px;
  transition: border 0.3s ease;
}
 
.newsletter-form input:focus {
  border-color: #000;
}
 
/* Button */
.newsletter-form button {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background0.3s ease;
}
 
.newsletter-form button:hover {
  background: #333;
}
 
 
 
/* Footer */
.footer {
  background: #3b281c;
  color: #fff;
  padding: 20px 15px;  
  font-size: 12px;      
  margin-top: 30px;    
}
 
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;            
  max-width: 1000px;  
  margin: auto;
}
 
.footer-section {
  flex: 1;
  min-width: 180px;    
  padding: 5px;        
}
 
.footer-section h3,
.footer-section h4 {
  margin-bottom: 6px;  
  font-size: 14px;      
  font-weight: bold;
}
 
.footer-section p {
  margin: 4px 0;
  color: #ddd;
  font-size: 12px;
}
 
/* Social Icons */
.social-icons {
  margin: 6px 0;
}
 
.social-icons a {
  color: white;
  margin-right: 8px;
  font-size: 14px;      
  transition: color 0.3s;
}
 
.social-icons a:hover {
  color: #ff6f61;
}
 
.copyright {
  margin-top: 8px;
  font-size: 11px;
  color: #bbb;
}
 
/* Inquiry Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
 
.inquiry-form input {
  padding: 6px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 12px;
}
 
.inquiry-form button {
  padding: 6px;
  border: none;
  border-radius: 12px;
  background: #8b5e3c;
  color: white;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}
 
.inquiry-form button:hover {
  background: #6a4428;
}
 
/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
 
 
 
 