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

.hidden {
  display: none;
}

h1, h2, h4, h5, h6 {
  font-family: 'Great Vibes', cursive;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 45px;
}

h3,
h4 {
  font-size: 18px;
  line-height: normal;
}

h5 {
  font-size: 32px;
}

h6 {
  font-size: 28px;
}

h3, div, p, a, button {
  font-family: "Raleway", sans-serif; 
}

div, p, a, button {
  font-size: 17px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ================= NAVIGATION ================= */
.navigation {
  position: relative;
  padding: 5px 0;
}

.logo {
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  gap: 6px;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #66cdee;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #66cdee;
}

.announcement-bar {
  background-color: #387cb5;
  color: #fff;
  text-align: center;
  padding: 7px 0;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 74px 20px 40px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(50px);
  }

  .nav-links.active li {
    animation: slideIn 0.5s forwards;
  }

  .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { animation-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { animation-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { animation-delay: 0.4s; }

  body.no-scroll {
    overflow: hidden;
  }

  body.no-scroll::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #387cb5;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #3f428a;
}

/* ================= HERO (VIDEO FIXED) ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  background-color: rgb(255 255 255 / 29%);
  width: 100%;
  max-width: 800px;
  padding: 20px;
  border-radius: 10px;
}

.hero h1 {
  line-height: normal;
  margin-bottom: 15px;
}

.hero p {
  font-weight: 600;
}

/* ================= Collections cards =================== */
section.explore-our-collections {
  padding: 50px 0;
}

.collection-card-wrapper.collection-card-slider {
  margin-top: 30px;
}

.collection-card {
  margin: 0 10px;
}

.collection-card a {
  text-decoration: none;
  color: #333;
  display: block;
}

.collection-card-image {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card-details {
  padding: 15px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #fff;
}

.collection-card-details h3 {
  margin-bottom: 5px;
}

.catalog{
  margin: 15px 0;
}

/* Slick slider dots */
.slick-dots {
  bottom: -35px;
}

.slick-dots li button:before {
  color: #387cb5;
  font-size: 10px;
}

.slick-dots li.slick-active button:before {
  color: #387cb5;
}

/* ================= ABOUT ================= */
.about {
  padding: 50px 0;
  background: #f9f9f9;
}

.about h2 {
  margin-bottom: 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature {
  background: #fff;
  border-radius: 10px;
  padding: 0 0 20px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature p {
  padding: 0 10px;
  font-weight: 500;
}

.featured-image {
  width: 100%;
  height: 200px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.featured-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ================= PROCESS ================= */
.process {
  padding: 50px 0;
}

.process h2 {
  margin-bottom: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.step {
  padding: 25px 20px;
  border-radius: 10px;
  background: #f4f4f4;
  transition: background 0.3s ease;
}

.step:hover {
  background: #e8e8e8;
}

.step h3 {
  margin-bottom: 10px;
  color: #387cb5;
}

/* ================= CTA ================= */
.cta {
  padding: 80px 0;
  background: #66cdee;
  color: #fff;
}

.cta h3 {
  margin-bottom: 10px;
  font-size: 32px;
  font-family: 'Great Vibes', cursive;
}

.cta .btn {
  background: #fff;
  color: #387cb5;
}

.cta .btn:hover {
  background: #f0f0f0;
}

/* ================= FOOTER ================= */
footer {
  padding: 20px;
  text-align: center;
  background: #222;
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3, h4 {
    font-size: 15px;
    line-height: normal;
  }

  div, p, a, button {
    font-size: 15px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 80vh;
  }

  .hero-video {
    object-position: center 40%;
  }

  .hero-content {
    padding: 15px;
  }

  .cta h3 {
    font-size: 26px;
  }

  .about p,
  .explore-our-collections p {
    font-size: 16px;
  }
}