
.header1 {
  text-align: center;
  padding: 2rem;
  background: rgb(254, 194, 160);
  color: white;
}
.header1 h1 {
  margin-bottom: 0.5rem;
}


.wear-culture{
  text-align: center;
  padding: 2rem;
  background: rgb(254, 194, 160);
  color: white;
}
.wear-culture{
  text-align: center;
  padding: 2rem;
  background: rgb(254, 194, 160);
  color: white;
}
.wear-culture h1{
    margin-bottom: 0.5rem;
    color:black;
}
.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}
.outfit-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}
.outfit-card {
	-webkit-animation: shadow-inset-lr 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: shadow-inset-lr 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
             @-webkit-keyframes shadow-inset-lr {
  0% {
    -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0), inset 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0), inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: inset -6px 0 14px -6px rgba(0, 0, 0, 0.5), inset 6px 0 14px -6px rgba(0, 0, 0, 0.5);
            box-shadow: inset -6px 0 14px -6px rgba(0, 0, 0, 0.5), inset 6px 0 14px -6px rgba(0, 0, 0, 0.5);
  }
}
@keyframes shadow-inset-lr {
  0% {
    -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0), inset 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0), inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: inset -6px 0 14px -6px rgba(0, 0, 0, 0.5), inset 6px 0 14px -6px rgba(0, 0, 0, 0.5);
            box-shadow: inset -6px 0 14px -6px rgba(0, 0, 0, 0.5), inset 6px 0 14px -6px rgba(0, 0,0,0.5);
}
}
}
.outfit-card:hover {
  transform: translateY(-5px);
}
.outfit-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.outfit-card h3 {
  margin: 1rem 0;
  color: #444;
}
.view-btn {
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: #ff8177;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.view-btn:hover {
  background: #ff5252;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 80px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}
.modal-content {
  background: white;
  margin: auto;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  position: relative;
}
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
.modal-actions {
  margin-top: 1.5rem;
}
.buy-btn, .rent-btn {
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 6px;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.buy-btn {
  background: #4CAF50;
  color: white;
}
.rent-btn {
  background: #2196F3;
  color: white;
}
.buy-btn:hover, .rent-btn:hover {
  opacity: 0.8;
}


header h1 {
  margin: 10px 0;
  font-size: 2.5rem;
  color: #ffdf6c;
}

header a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  background: rgba(255, 215, 0, 0.3);
  padding: 6px 12px;
  border-radius: 8px;
  transition: 0.3s;
}

header a:hover {
  background: rgba(255, 215, 0, 0.6);
}

main {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}
.outfit-article {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  padding: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.outfit-article:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.25);
}

.outfit-article img {
  width: 250px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.outfit-info {
  flex: 1;
}

.outfit-info h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ffdf6c;
}

.outfit-info p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .outfit-article {
    flex-direction: column;
    text-align: center;
  }

  .outfit-article img {
    width: 100%;
    max-width: 350px;
  }
}