@import url('https://fonts.googleapis.com/css2?family=Castoro+Titling&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Castoro Titling";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  padding: 19px 20px;
  z-index: 1100;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#mylarmas {
  letter-spacing: 10px;
  font-weight: bold;
  position: relative;
  left: -22vh;
  color: #000;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Castoro Titling";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.menu-toggle {
  position: relative;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: rgb(0, 0, 0);
  font-size: 22px;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 1200;
  right: 92%;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1099;
  padding-top: 60px;
}

.mobile-nav.active {
  transform: translateX(0);
  z-index: 9999999;
}


.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li a {
  display: block;
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 15px 20px;
  font-size: 18px;
  text-align: left;
  direction: ltr;
}

.mobile-nav ul li a:hover {
  text-decoration: underline;
  transition: 0.4s ease;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin: 20px 0 110px 0;
}

.bannervideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.video-text h2 {
  font-size: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
  top: 40vh;
}

.video-text h3 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 0.5rem;
  top: 40vh;
}

.video-text h4 {
  font-size: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
  top: 40vh;
  text-decoration: underline;
}

.product-section {
  padding: 60px 20px;
  margin: 20px 0 110px 0;
  border-radius: 8px;
  min-height: 72vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-section h4 a {
  color: #0d47a1;
  font-size: 2rem;
  text-decoration: underline;
  cursor: pointer;
}

.product-section h4 a:hover {
  color: #1565c0;
}

#exploretexth4 {
  position: relative;
  font-size: 2rem;
  bottom: 33vh;
  right: 0vh;
  color: #000000;
}

.explore-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: absolute;
}

.explore-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  width: 404px;
  cursor: pointer;
  transition: transform 0.4s ease;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.explore-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.explore-card p {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 25px 0;
  letter-spacing: 1.2px;
}

.explore-card:hover {
  transform: scale(1.05);
}

.banner-section {
  width: 100%;
  margin: 80px 0;
}

.banner-section img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.necklace-item {
  width: 320px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.3s ease;
}

.necklace-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.necklace-item .product-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 12px 0 6px 0;
}

.necklace-item .product-description {
  font-size: 15px;
  color: #555;
  margin: 0 0 10px 0;
}

.necklace-item .product-price {
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

.necklace-item:hover {
  transform: scale(1.05);
}

.necklace-row {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.necklace-item {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
}

#necklacetitle {
  position: absolute;
  font-size: 2rem;
  top: 305vh;
  left: 76vh;
  color: #000000;
}

#bracelatetitle {
  position: absolute;
  font-size: 2rem;
  top: 495vh;
  left: 77vh;
  color: #000000;
}

.site-footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 20px 30px 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.footer-column {
  width: 220px;
  margin-bottom: 20px;
}

.footer-column h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #fff;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 25px;
  font-size: 16px;
  color: #777;
}

.contact-section {
  max-width: 600px;
  margin: 50px auto;
  background-color: #f7f7f7;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.contact-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background-color: #0d47a1;
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #1565c0;
}

.icon-link i {
  position: relative;
  font-size: 22px;
  color: #000;
  background-color: #f0f0f0;
  border-radius: 50%;
  padding: 10px;
  left: 116vh;
  transition: 0.3s;
}

.icon-link:hover i {
  background-color: #000;
  color: #fff;
  transform: scale(1.1);
}

.icon-link2 i {
  position: relative;
  font-size: 22px;
  color: #000;
  background-color: #f0f0f0;
  border-radius: 50%;
  padding: 10px;
  left: 170vh;
  transition: 0.3s;
}

.icon-link2:hover i {
  background-color: #000;
  color: #fff;
  transform: scale(1.1);
}