/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    color: #000;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
 .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #fff;
      border-bottom: 1px solid #eee;
      z-index: 1000;
      padding: 20px 0;
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
    }
    .logo a {
      font-size: 24px;
      font-weight: 700;
      text-decoration: none;
      color: #000;
      letter-spacing: 2px;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 30px;
    }
    
    .main-nav ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 20px;
    }
    
    .main-nav ul li a {
      text-decoration: none;
      text-transform: uppercase;
      color: #000;
      font-size: 14px;
      letter-spacing: 1px;
    }
    
    .nav-icons a {
      font-size: 16px;
      color: #000;
      margin-left: 15px;
    }
    

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

/* One layer starts visible */
.hero-bg1 {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}

/* Dark overlay if you want */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}


.hero-content h1 {
    font-size: 100px;
    margin-bottom: 20px;
    letter-spacing: 10px;
}
.hero h1 {
  transition: transform 0.4s ease-in-out;
  display: inline-block;
}

.hero h1:hover {
  transform: scale(1.01); 
}
.hero-content h4 {
  font-family: Arial, sans-serif; /* same as nav */
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
    text-decoration: none;
  font-weight: bold;
  letter-spacing: 5px;
  font-weight: 400; /* match nav style; use 300 if you want it thinner */
}
.hero-content h4 {
  margin-top: -10px; /* Pull h4 closer to h1 */
  margin-bottom: 10px;
}
.hero .btn {
  background-color: #ffffffe1;
  color: #000000;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hero .btn:hover {
  background-color: #000000;
  color: #ffffff;
   transform: scale(1.05); 
    transition: transform 0.4s ease-in-out;
  display: inline-block;

}
  
.hero h1,
.hero h4,
.hero p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* Featured Products */
.featured {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.featured h2 {
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.product-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.product-item {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
.product-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Newsletter */
.newsletter {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}

.newsletter h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 20px;
}

.newsletter input {
    padding: 12px 20px;
    width: 300px;
    margin-right: 10px;
    border: 1px solid #ddd;
}

/* Footer */
.footer {
    padding: 50px 20px 20px;
    background: #000;
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.social-icons a {
    margin-right: 15px;
    font-size: 18px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
}
.auth-form{align-items: center;}

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px; /* Offset for fixed header if needed */
    background: #f9f9f9;
  }
  
  .auth-container {
    background: #fff;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .auth-form {
    display: flex;
    flex-direction: column;
  }
  
  .auth-form h2 {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .error-message {
    color: red;
    font-size: 12px;
    display: none;
    margin-top: 5px;
  }
  
  .switch-form {
    margin-top: 10px;
    text-align: center;
  }
  
  .back-home {
    margin-top: 30px;
    text-align: center;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }
  /* Shared container styling */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* The border wrapper matching homepage sections */
.bordered {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

/* Specific About page spacing/content */
.about-hero {
  text-align: center;
  padding: 40px 0;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.text-block h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.main-nav {
  margin-left: auto; /* pushes nav to the right */
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
  letter-spacing: 1px;
}

.nav-icons {
  margin-left: 30px; /* spacing between nav and icons */
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-hero-image {
  background-image: url('fashion.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-overlay {
  text-align: center;
  color: white;

  padding: 40px;
  border-radius: 8px;
}

.about-overlay h1 {
  font-size: 150px;
  margin-bottom: 20px;
  letter-spacing: 3px;
   text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.about-overlay p {
   font-family: Arial, sans-serif; 
  font-size: 18px;
  letter-spacing: 5px;
   text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}
.marquee {/* advertise marquee */
  background-color:  #000;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
