/* ================================================================
   MARCALEYE - Hair & Nails Salon
   Stylesheet — Minimalist Luxury
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #080808;
  --dark:       #111111;
  --dark-2:     #1a1a1a;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim:   #8B6914;
  --white:      #FFFFFF;
  --cream:      #F5F0E8;
  --grey:       #888888;
  --grey-light: #CCCCCC;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'Jost', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── SCROLLBAR ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ── CURSOR GLOW ──────────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ── NAV ──────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}

.nav-logo img {
  height: 48px; width: 48px;
  border-radius: 50%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.nav-cta::after { display: none !important; }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}

.nav-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero.png') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.5) 0%,
    rgba(8,8,8,0.35) 40%,
    rgba(8,8,8,0.75) 80%,
    rgba(8,8,8,1) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title span {
  display: block;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 300;
  margin-top: 0.5rem;
}

.hero-divider {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-divider-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--grey-light);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── SECTION BASE ─────────────────────────────────────────────── */
.section {
  padding: 8rem 4rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}

.section-tag-line {
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-tag span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey);
  max-width: 480px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* ── ABOUT ────────────────────────────────────────────────────── */
#about {
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height var(--transition);
}

.stat-item:hover::before { height: 100%; }
.stat-item:hover { border-color: rgba(201,168,76,0.3); }

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 60%; aspect-ratio: 1;
  border: 1px solid rgba(201,168,76,0.25);
  z-index: -1;
}

.about-badge {
  position: absolute;
  top: 2rem; left: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem;
  text-align: center;
}

.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ── SERVICES ─────────────────────────────────────────────────── */
#services {
  background: var(--black);
}

.services-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.1);
}

.service-card {
  background: var(--black);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
  group: '';
}

.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover { background: var(--dark-2); }
.service-card:hover::before { opacity: 1; }

.service-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 2rem;
}

.service-icon {
  font-size: 2rem;
  line-height: 1;
}

.service-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: rgba(201,168,76,0.3);
  font-weight: 300;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.service-card:hover .service-name { color: var(--gold); }

.service-desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.service-list {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}

.service-list li {
  font-size: 0.75rem;
  color: var(--grey-light);
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 0.5rem;
}

.service-list li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── GALLERY STRIP ────────────────────────────────────────────── */
#gallery {
  overflow: hidden;
  padding: 4rem 0;
  background: var(--dark);
}

.gallery-track {
  display: flex; gap: 1.5px;
  animation: slide 30s linear infinite;
  width: max-content;
}

.gallery-track:hover { animation-play-state: paused; }

.gallery-item {
  width: 280px; height: 360px;
  overflow: hidden; flex-shrink: 0;
  position: relative;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(30%);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* ── CONTACT ──────────────────────────────────────────────────── */
#contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info {
  display: flex; flex-direction: column; gap: 2rem;
  margin-top: 3rem;
}

.contact-item {
  display: flex; gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.contact-item-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 300;
}

.contact-item-value a {
  transition: color var(--transition-fast);
}

.contact-item-value a:hover { color: var(--gold); }

/* form */
.contact-form {
  display: flex; flex-direction: column; gap: 1.5rem;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-group {
  display: flex; flex-direction: column; gap: 0.5rem;
}

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--cream);
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition-fast);
  width: 100%;
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

.form-group select option {
  background: var(--dark-2);
  color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit { margin-top: 0.5rem; }

/* ── MARQUEE ──────────────────────────────────────────────────── */
.marquee-section {
  padding: 2rem 0;
  background: var(--gold);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex; align-items: center; gap: 2rem;
  padding: 0 2rem;
  white-space: nowrap;
}

.marquee-item span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--black);
  text-transform: uppercase;
}

.marquee-item .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
}

/* ── FOOTER ───────────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  padding: 5rem 4rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-logo {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand-logo img {
  height: 48px; width: 48px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex; gap: 1rem;
}

.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--grey);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex; flex-direction: column; gap: 0.75rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--grey);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

.footer-copy span { color: var(--gold); }

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.7; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── WHATSAPP FLOAT ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 6rem 2.5rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-visual { display: none; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  #navbar { padding: 1.2rem 1.5rem; }
  #navbar.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-intro { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  #footer { padding: 4rem 1.5rem 2rem; }
}
