/* IMPORT FONTS (ALWAYS AT TOP) */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
  --primary: #1db954;
  --white: #fff;
  --black: #111;
  --gray: #666;
  --light-gray: #f5f5f5;
  --font-small: 9px;
  --font-medium: 11px;
  --font-large: 18px;
  --radius: 10px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* DEFAULT TEXT → MANROPE */
body {
  font-family: 'Manrope', sans-serif;
  height: 100vh;
  overflow: hidden;
  color: var(--black);
}

/* HEADINGS → SORA */
h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
}

/* CONTAINER */
.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 12px 70px;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 75px;
}

.menu {
  font-size: 20px;
  cursor: pointer;
  
}

/* MENU */
.menu-box {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: absolute;
  top: 60px;
  right: 10px;
  z-index: 1000;
}

.menu-box a {
  text-decoration: none;
  color: #111;
  padding: 6px 0;
  font-family: 'Manrope', sans-serif;
}

.menu-box.show {
  display: flex;
}

/* HERO */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -14px;
  
  
}

.hero-text h1 {
  font-size: var(--font-large);
  line-height: 1.1;
}

.hero-text span {
  color: var(--primary);
}

/* SUBTEXT → MANROPE */
.sub {
  font-size: var(--font-medium);
  color: var(--gray);
  margin: 4px 0;
}

/* CTA */
.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  padding: 5px 14px;
  transform: translateY(-10px);
  background: linear-gradient(135deg, #1db954, #17a74a);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  font-family: 'Sora', sans-serif; /* CTA feels like heading */
  box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
  transition: all 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(1px);
}

/* IMAGE */
.image-section {
  height: 20%;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transform: translateY(10px);
}

/* HOW */
.how {
  padding: 8px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(8px);
}

.how h3 {
  text-align: center;
  font-size: 11px;
  margin-bottom: 5px;
}

.steps {
  display: flex;
  justify-content: space-around;
}

.step {
  text-align: center;
  font-size: var(--font-small);
  font-family: 'Manrope', sans-serif;
}

.step i {
  font-size: 18px;
  color: var(--primary);
}

/* SALONS */
.salon-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 5px;
  transform: translateY(15px);
}

.salon-header a {
  font-family: 'Manrope', sans-serif;
}

.salons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  transform: translateY(15px);
}

.card {
  background: var(--light-gray);
  padding: 9px;
  border-radius: var(--radius);
  text-align: center;
  font-size: var(--font-small);
}

.card p {
  font-family: 'Manrope', sans-serif;
}

.card span {
  font-family: 'Manrope', sans-serif;
  color: var(--gray);
}

.card img {
  width: 100%;
  height: 75px;
  object-fit: cover;
  border-radius: 10px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 16px;
}

.feature {
  text-align: center;
  font-size: 9px;
}

.feature h4 {
  font-size: 9px;
  /*background-color: rebeccapurple;*/
}

.feature p {
  font-family: 'Manrope', sans-serif;
  /*background-color:black;*/ 
}

.feature i {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 2px;
}

/* FOOTER */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-bar a {
  background: #fff;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Sora', sans-serif;
}

.location,
.users-footer {
  color: #fff;
  font-size: var(--font-small);
  font-family: 'Manrope', sans-serif;
}