* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #fff;
}


.head {
  top: 0vw;
  height: 8vw;
  width: 100%;
  position: fixed;
  z-index: 3;
  background-color: #c1a164;
}
.head img {
  height: 5vw;
  width: 5vw;
  border-radius: 10vw;
  position: absolute;
  left: 1vw;
  top: 1.5vw;
  border: solid 0.15vw rgb(36, 84, 218);
  cursor: pointer;
  animation: border-color-animation 3s infinite;
}
@keyframes border-color-animation {
  0% {
    border-color: rgb(36, 84, 218);
  }
  33% {
    border-color: rgb(255, 0, 0);
  }
  66% {
    border-color: rgb(0, 255, 0);
  }
  100% {
    border-color: rgb(36, 84, 218);
  }
}
.head h1 a{
  color: #111;
  text-decoration: none;
  position: relative;
  left: 7vw;
  top: 1.7vw;
  font-size: 1.8vw;
  cursor: pointer;
  font-family: cinzel;
}
.head p a{
  color: #111;
  position: relative;
  left: 7vw;
  top: 1.7vw;
  font-size: 1.3vw;
  cursor: pointer;
  text-decoration: none;
  font-family: cinzel;
}


.logo img {
  height: 5vw;
  width: 5vw;
  border-radius: 10vw;
  z-index: 3;
  position: fixed;
  right: 1vw;
  top: 1.5vw;
  cursor: default;
}


.menu {
  text-align: center;
  position: fixed;
  top: 3vw;
  left: 43vw;
  z-index: 3;
}
.menu ul {
  display: flex;
  list-style: none;
  font-size: 1vw;
  padding: 0;
  margin: 0;
}
.menu ul li {
  position: relative;
  margin: 0 0.7vw;
  padding: 0.7vw;
}
.menu ul li a {
  text-decoration: none;
  color: #111;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  font-family: cinzel;
  font-weight: 700;
}
.menu ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.3vw;
  width: 0;
  height: 0.2vw;
  background-color: #fff;
  transform: translateX(-50%);
  transition: width 0.4s ease-in-out;
}
.menu ul li a:hover {
  color: #444;
}
.menu ul li a:hover::after {
  width: 50%;
}
.menu-1 {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: auto;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background-color: #c1a164;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.menu-1 li {
  padding: 0.7vw 1vw;
  white-space: nowrap;
  background-color: transparent;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu-1 li a {
  text-decoration: none;
  font-family: cinzel,bold;
  transition: color 0.3s ease;
}
.menu-1 li a:hover {
  color: rgb(255, 255, 255);
}
.menu ul li:hover .menu-1 {
  opacity: 1;
  visibility: visible;
}
.menu ul li:hover .menu-1 li {
  opacity: 1;
  transform: translateY(0);
}
.menu-1 li:nth-child(1) {
  transition-delay: 0.1s;
}
.menu-1 li:nth-child(2) {
  transition-delay: 0.2s;
}
.menu-1 li:nth-child(3) {
  transition-delay: 0.3s;
}
.menu-1 li:nth-child(4) {
  transition-delay: 0.4s;
}
.menu-1 li:nth-child(5) {
  transition-delay: 0.5s;
}
.menu ul li:not(:hover) .menu-1 {
  opacity: 0;
  visibility: hidden;
}
.menu ul li:not(:hover) .menu-1 li {
  opacity: 0;
  transform: translateY(-10px);
  transition-delay: 0s;
}
.menu-1 ul {
  padding: 0;
  margin: 0;
  display: block;
}
.arrow {
  display: inline-block;
  margin-left: 0.3vw;
  font-size: 1vw;
  transition: transform 0.3s ease;
}
.has-submenu:hover .arrow {
  transform: rotate(180deg);
}


.womens-content {
  text-align: left;
  padding: 20px;
  background-color: #fff;
  width: 98%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  position: relative;
  top: 8.5vw;
  margin-left: 1vw;
}

.cover-img {
  width: 100%;
  height: 40vw;
  display: block;
  border-radius: 10px;
  margin-top: 0vw;
}

.content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 90%;
  position: relative;
  top: 2vw;
  background-color: #fff;
  border-radius: 10px;
}

.womens-content p {
  font-family: Bodoni Moda;
  width: 90%;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 1vw;
  letter-spacing: 1px;
  margin-top: 1vw;
  height: auto;
}

.image-left {
  float: left;
  width: 30%;
  margin-right: 1px;
  height: 15vw;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s, transform 1s;
}
.content p:first-of-type {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s, transform 1s;
}
.image-left.active, .content p:first-of-type.active {
  opacity: 1;
  transform: translateX(0);
}
.womens-content p:not(:first-of-type) {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}
.womens-content p:not(:first-of-type).active {
  opacity: 1;
  transform: translateY(0);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px;
  position: relative;
  top: 6vw;
}
  
button {
  padding: 12px 60px;
  font-size: 16px;
  cursor: pointer;
  background-color: #fff;
  color: #c1a164;
  border: 2px solid #c1a164;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s, border-color 0.4s;
  outline: none;
  margin: 2vw;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s, transform 0.4s;
}
button.active {
  opacity: 1;
  transform: scale(1.1);
}
button.active:hover {
  transform: scale(1); 
}
button .color-fill-top,button .color-fill-bottom {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  background-color: #c1a164;
  transition: all 0.6s ease-in-out;
}
button .color-fill-top {
  top: 50%;
  height: 0;
  transition: top 0.5s ease, height 0.5s ease;
}
button .color-fill-bottom {
  bottom: 50%;
  height: 0;
  transition: bottom 0.5s ease, height 0.5s ease;
}
button:hover .color-fill-top {
  top: 0;
  height: 50%;
}
button:hover .color-fill-bottom {
  bottom: 0;
  height: 50%;
}
button:hover {
  color: #fff;
  border-color: #fff;
}
button span {
  position: relative;
  z-index: 1;
}
button:hover {
  transform: scale(1.1);
  transition: transform 0.8s ease;
}
  
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: auto;
  background-color: #f0f8ff;
  border-radius: 12px;
}
.column {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
.column.active {
  display: flex;
}
  
#column1 .All-container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
  padding: 20px;
}
  
#column2 .CO-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 20px;
}
  
#column3 .AD-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  flex-wrap: wrap;
  width: auto;
  margin: auto;
}
  
#column4 .OB-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 20px;
}

#column5 .CM-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
  padding: 20px;
}

  
.All-card,.CO-card,.OB-card,.CM-card,.AD-card {
  width: 20vw;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-left: 1vw;
  transition: transform 1s ease, box-shadow 1s ease, border 1s ease;
  background-color: #fafafa;
  opacity: 0;
  transform: scale(0.8);
}
.column .All-card:hover, .column .CO-card:hover, .column .OB-card:hover, .column .CM-card:hover, .AD-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0.1vw 0.1vw #F39C12;
  border: 0.01vw solid #F39C12;
}
@keyframes popUp {
  0% {
      opacity: 0;
      transform: scale(0.8);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}
  
  
.photo-section {
  width: 100%;
  height: 23vw;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 1rem;
  position: relative;
  transition: box-shadow 0.5s ease;
  border: none;
}
.photo-section::before,.photo-section::after {
  content: '';
  position: absolute;
  background-color: #2980b9;
  transition: all 0.5s ease;
}
.photo-section::before {
  top: 0;
  left: 50%;
  height: 2px;
  width: 0;
  transform: translateX(-50%);
}
.photo-section::after {
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 0;
  transform: translateX(-50%);
}
.photo-section::before,.photo-section::after {
  content: '';
  position: absolute;
  background-color: #2980b9;
  transition: all 0.5s ease;
  z-index: 10;
}
.photo-section::left {
  top: 50%;
  left: 0;
  width: 2px;
  height: 0;
  transform: translateY(-50%);
}
.photo-section::right {
  top: 50%;
  right: 0;
  width: 2px;
  height: 0;
  transform: translateY(-50%);
}
.photo-section:hover::before,.photo-section:hover::after {
  width: 100%;
}
.photo-section:hover {
  box-shadow: 0 0 15px rgba(41, 128, 185, 0.7);
}
.photo-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  
  
.info-section {
  padding: 10px;
  text-align: center;
}
.info-section h2 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
.info-section p {
  font-size: 1rem;
  color: #7f8c8d;
}


footer {
  background-color: #c1a164;
  color: white;
  padding: 2vw 2vw;
  font-family: cinzel;
  margin-top: 5vw;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-content a {
  color: #fff;
  text-decoration: none;
}
.footer-content div {
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
}
.footer-content .contact-info p {
  margin: 8px 0;
}
.footer-content .quick-links ul,
.footer-content .legal ul {
  list-style-type: none;
  padding-left: 0;
}
.footer-content .quick-links li,
.footer-content .legal li {
  margin: 8px 0;
}
.footer-content .quick-links a,
.footer-content .legal a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-content .quick-links a:hover,
.footer-content .legal a:hover {
  color: #444;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #fff;
  padding-top: 10px;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  line-height: 1vw;
}