*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blush: #f2c4b8;
  --rose: #e8a090;
  --cream: #fdf6f2;
  --nude: #f7e8e0;
  --dark: #1a1010;
  --muted: #6b4f4a;
  --white: #ffffff;
  --ff-serif: "ClashDisplay1", sans-serif;
  --ff-sans: "ClashDisplay1", sans-serif;
}
img {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--dark);
  font-weight: 300;

  margin: 0 auto;
  border: 1px solid #ddd;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 30px 0;
}
.logo {
  display: flex;
  flex-direction: column;
}
.hero-btn {
  /* default (LTR) */
  inset-inline-start: 30px;

  padding: 20px 32px;
  border-radius: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
}

/* RTL → move button to right */

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.s {
  display: flex;
  justify-content: center;
  gap: 16px;
}
/* Placeholder gradient for hero when no real image */
.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #c9a0a0 0%, #8b5e5e 50%, #3d2020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  text-align: center;
}

.hero-text h1 {
  font-family: var(--ff-serif);
  color: #fff;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 63px; /* 78.75% */
  letter-spacing: 0.35px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-text p {
  font-family: var(--ff-serif);
  text-align: center;
  font-size: 23px;
  font-weight: 100;
  line-height: 63px; /* 273.913% */
  letter-spacing: 0.35px;
  color: rgba(255, 255, 255, 0.88);
  animation: fadeUp 0.9s 0.18s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about {
  background: #f3c6bf;
  height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* subtle noise texture */
}
/* ── ABOUT STRIP ── */
.card {
  background: rgba(255, 255, 255, 0.6);

  border-radius: 4px;
  max-width: 90%;
  width: 100%;
  padding: clamp(40px, 7vw, 70px) clamp(30px, 8vw, 125px);
  text-align: center;
  box-shadow: 0 8px 40px rgba(120, 50, 40, 0.12);
  animation: fadeUp 0.9s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Tag line ── */
.card-tag {
  color: #da8989;
  text-align: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 111.111% */
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* ── Divider ── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 28px;
  opacity: 0.5;
}

/* ── Body paragraphs ── */
.card-body p {
  font-family: var(--ff-sans);
  font-size: clamp(0.82rem, 1.8vw, 1.32rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 18px;
}

.card-body p:last-child {
  margin-bottom: 0;
  font-style: italic;
}

/* ── Responsive ── */

/* ── SERVICES GRID ── */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.service-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

/* Placeholder colored blocks with icons since we have no real images */
.service-card .bg {
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
}

.service-card:hover .bg {
  transform: scale(1.07);
}

.service-card .label {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  font-weight: 400;
  border-radius: 16777200px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2.5px);
  padding: 20px 32px;
  display: flex;
  justify-content: center;
  width: 300px;
  margin: auto;
  font-size: 18px;
}

/* Individual card colors */
.card-nails .bg {
  background: url(images/2.png);
  object-fit: cover;
  object-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-massages .bg {
  background: url(images/3.png);
  object-fit: cover;
  object-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-body .bg {
  background: url(images/4.png);
  object-fit: cover;
  object-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-facials .bg {
  background: url(images/5.png);
  object-fit: cover;
  object-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-waxing .bg {
  background: url(images/6.png);
  object-fit: cover;
  object-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-lashes .bg {
  background: url(images/7.png);
  object-fit: cover;
  object-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

/* ── BROWS HERO ── */
.brows-hero {
  position: relative;
  height: 599px;
  overflow: hidden;
}

.brows-placeholder {
  width: 100%;
  height: 100%;
  background: url(images/8.png);
  object-fit: cover;
  object-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.brows-label {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  font-weight: 400;
  border-radius: 16777200px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2.5px);
  padding: 20px 32px;
  display: flex;
  justify-content: center;
  width: 300px;
  margin: auto;
  font-size: 18px;
}

/* ── QUOTE SECTION ── */
.quote-section {
  background: var(--cream);
  padding: 52px 36px 44px;
  text-align: center;
}

.quote-section blockquote {
  font-family: var(--ff-serif);
  color: #000;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 100;
  line-height: 60px;
  letter-spacing: 2.4px;
  margin-bottom: 18px;
}

.quote-sub {
  color: #000;
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.35px;
  margin-bottom: 28px;
}

.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--ff-sans);
  font-size: 20px;

  text-transform: uppercase;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 15px 30px;
}

.btn-primary {
  border: 1px solid var(--1, #da8989);
  background: var(--1, #da8989);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: transparent;
  color: #da8989;
  border: 1px solid #da8989;
}

.btn-outline {
  background: transparent;
  color: #da8989;
  border: 1px solid #da8989;
}

.btn-outline:hover {
  background: #da8989;
  transform: translateY(-1px);
  color: #fff;
}

/* ── Footer ── */
footer {
  background-color: var(--blush);
  border-top: 3px solid var(--teal-border);
  padding: 40px 20px 22px;
  text-align: center;
  position: relative;
}

.footer-star {
  display: block;
  font-size: 1.4rem;
  color: var(--blush-dark);
  margin-bottom: 6px;
  line-height: 1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.12);
  }
}

.footer-brand {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 400;
  color: var(--blush-dark);
  letter-spacing: 0.04em;
  margin-bottom: 0px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--blush-mid);
  margin-bottom: 16px;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav1 a {
  font-size: 14px;
  font-weight: 300;
  color: #da8989;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-nav1 a:hover {
  color: #7a4040;
}

.footer-copy {
  font-size: 18px;

  font-weight: 300;
  color: #da8989;
  letter-spacing: 0.03em;
}

.bttrtr {
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  font-weight: 400;
  border-radius: 16777200px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2.5px);
  padding: 20px 32px;
  display: flex;
  justify-content: center;
  width: 300px;
  margin: auto;
  font-size: 14px;
  text-decoration: none;
}

.bttrtr:hover {
  background: #da8989;
}

/* ───────── RESPONSIVE FIXES ───────── */

/* Tablets */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
  }
  .bttrtr {
    margin-top: 15px;
  }
  .hero-text p {
    font-size: 18px;
    line-height: 1.5;
  }
  .bttrtr {
    width: 220px;
  }
  .services {
    grid-template-columns: 1fr 1fr;
  }

  .about {
    height: auto;
    padding: 40px 20px;
  }

  .card {
    padding: 40px 25px;
  }

  .quote-section blockquote {
    font-size: 40px;
    line-height: 1.3;
  }
}

/* Mobile */
@media (max-width: 600px) {
  nav {
    padding: 20px 0;
  }

  .hero {
    height: 80vh;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.4;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service-card .label {
    width: 80%;
    font-size: 20px;
    padding: 12px 16px;
  }

  .brows-hero {
    height: 350px;
  }

  .brows-label {
    width: 80%;
    font-size: 12px;
    padding: 12px 16px;
  }

  .quote-section {
    padding: 40px 20px;
  }

  .quote-section blockquote {
    font-size: 25px;

    line-height: 1.4;
  }

  .btn-group {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 20px;
  }

  .quote-section blockquote {
    font-size: 40px;
  }
}

/* ── Responsive ── */
@media (max-width: 480px) {
  footer {
    padding: 32px 16px 18px;
  }
  .footer-brand {
    font-size: 1.5rem;
  }
}
