/* Ebenhaezer George Renaldi Muljadi - 2702230461 */

.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}
  
.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
  
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  display: flex;
  justify-content: left;
  align-items: center;
  z-index: 2;
}
  
.hero-logo {
  width: 450px;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 300px;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.800); 
    justify-content: center;
  }
}

.brand-name {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 3px;
}
  
.tagline-section {
  background-color: #2C2C2C;
  color: #ffffff;
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: regular;
}

.tagline-section p:hover{
  color: #D4AF37;
}

.products {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #FFFFFF;
}
  
.products-title {
  font-size: 2rem;
  color: #2C2C2C;
  letter-spacing: 1px;
}
  
.products-subtitle {
  font-size: 1.1rem;
  color: #2C2C2C;
  margin-bottom: 2rem;
  font-style: italic;
}
  
.product-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-list a{
  text-decoration: none;
  color: inherit;
}

.product-card {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 1.2rem;
  border-radius: 12px;
  width: 250px;           
  height: 420px;          
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
  
.product-card img {
  width: 100%;
  height: 200px;           
  object-fit: cover;       
  border-radius: 8px;
  margin-bottom: 1rem;
}  
  
.product-card h3 {
  font-size: 1.1rem;
  color: #2C2C2C;
  margin-bottom: 0.5rem;
  min-height: 48px;       
}
  
.product-card p,
.product-card strong {
  margin-bottom: 0.5rem;
  color: #D4AF37;
}  
  
.product-card strong {
  color: #2C2C2C;
  font-weight: bold;
  font-size: 1.1rem;
}
  
.about-section {
    background-image: url('../assets/background/catWalk\(3).png');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    color: #ffffff;
    position: relative;
    text-align: center;
}
  
.about-overlay {
  background: rgba(0, 0, 0, 0.8); 
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}
  
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
  
.about-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #ffffff;
}
  
.about-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #ffffff;
}
  
.about-btn {
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.about-btn a{
  text-decoration: none;
  color: #2C2C2C;
}

.about-btn:hover {
  background-color: #d1cfcf;
}
  
@media (max-width: 768px) {
  .about-content h2 {
    font-size: 1.5rem;
  }
  
  .about-subtitle,
  .about-description {
    font-size: 0.85rem;
  }
  
  .about-btn {
    width: 100%;
    padding: 0.8rem;
  }
}