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

:root {
  --primary-bg: #fffcf8;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.3);
  --accent-color: #f7eae5;
  /* Light pinkish beige */
  --font-main: 'Outfit', sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--primary-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  background-image: url('./assets/hero_beauty_1777920884232.png');
  background-size: cover;
  background-position: center 20%;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  padding: 2rem 4rem;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.1) 40%,
      rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-left {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icon-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.pill-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pill-btn.active {
  background: white;
  color: var(--text-dark);
}

.pill-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  gap: 1rem;
}

/* HERO MAIN CONTENT */
.hero-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.hero-left {
  max-width: 600px;
}

.hero-left h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-left h1 strong {
  font-weight: 600;
}

.hero-left p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 50%;
}

.gallery-view {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  align-self: flex-end;
  margin-right: 2rem;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 12px solid white;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}

.gallery-text {
  font-size: 0.9rem;
  line-height: 1.3;
}

/* CAROUSEL CARDS */
.carousel-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cards-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: flex-end;
}

.card {
  width: 140px;
  height: 160px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card.image-card {
  background-size: cover;
  background-position: center;
}

.card-1 {
  background-image: url('./assets/card_facial_1777920906359.png');
}

.card-2 {
  background-image: url('./assets/card_hand_1777920920893.png');
}

.card.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem;
}

.glass-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.glass-card p {
  font-size: 0.65rem;
  line-height: 1.4;
  opacity: 0.8;
}

.card-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.9rem;
}

.slider-track {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}

.slider-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40px;
  background: white;
}

.carousel-arrows {
  display: flex;
  gap: 0.5rem;
  margin-left: 1rem;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-prev {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.arrow-next {
  background: white;
  color: var(--text-dark);
}

.arrow-btn:hover {
  transform: scale(1.05);
}


/* SECOND SECTION */
.content-section {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.section-header h2 strong {
  font-weight: 600;
}

.about-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.about-btn:hover {
  transform: scale(1.05);
  background: #f0ddd6;
}

.about-btn i {
  font-size: 1.2rem;
}

/* GRID LAYOUT */
.features-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.8fr;
  gap: 2rem;
}

.grid-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.grid-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.img-mask {
  height: 350px;
}

.img-cream {
  height: 450px;
}

.img-salon {
  height: 350px;
}

.feature-text {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #4a4a4a;
}

.col-3 .feature-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border: 1px solid #ddd;
  border-radius: 30px;
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  width: fit-content;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero {
    padding: 2rem;
  }

  .hero-left h1 {
    font-size: 3rem;
  }

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

  .col-3 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }

  .hero-right {
    max-width: 100%;
    align-items: flex-start;
  }

  .gallery-view {
    align-self: flex-start;
    margin-right: 0;
  }

  .cards-container {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
    width: calc(100vw - 4rem);
  }

  .carousel-controls {
    justify-content: flex-start;
  }

  .header-left {
    display: none;
  }

  .section-header {
    flex-direction: column;
    gap: 2rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

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

  .col-3 {
    grid-column: span 1;
  }
}