@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
  --primary-pink: #f8bbd0;
  --primary-pink-dark: #ec407a;
  --primary-white: #fff;
  --primary-black: #222;
}

html, body {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--primary-white);
  color: var(--primary-black);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  background: rgba(255,255,255,0.05); /* Transparent */
  box-shadow: none;
  position: fixed;
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background 0.3s;
}
.logo {
  display: flex;
  align-items: center;
}
.scissors-icon {
  height: 38px;
  width: 38px;
  color: var(--primary-pink-dark);
  vertical-align: middle;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--primary-white);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary-pink-dark);
}
.nav-btn {
  margin-left: 2rem;
  margin-right: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
  background: var(--primary-pink-dark);
  color: var(--primary-white);
}

.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(248,187,208,0.08);
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: var(--primary-pink-dark);
  color: var(--primary-white);
}
.btn-primary:hover {
  background: var(--primary-white);
  color: var(--primary-pink-dark);
  border: 2px solid var(--primary-pink-dark);
}
.btn-secondary {
  background: var(--primary-white);
  color: var(--primary-pink-dark);
  border: 2px solid var(--primary-pink-dark);
  margin-left: 1rem;
}
.btn-secondary:hover {
  background: var(--primary-pink-dark);
  color: var(--primary-white);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7rem 3rem 2rem 3rem;
  background-image: url('https://images.pexels.com/photos/27987136/pexels-photo-27987136.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 0 0 60px 60px;
  box-shadow: 0 8px 32px rgba(248,187,208,0.08);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(236, 64, 122, 0.25); /* Soft pink overlay */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  background: none;
}
.hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-white);
  text-shadow: 0 2px 8px rgba(236,64,122,0.18);
  line-height: 1.1;
}
.brand {
  color: var(--primary-pink-dark);
}
.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
  color: var(--primary-white);
  text-shadow: 0 2px 8px rgba(236,64,122,0.18);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--primary-pink-dark);
}
.hero-stats span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-pink-dark);
}
.hero-location {
  color: var(--primary-pink-dark);
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
  font-weight: 500;
  margin-bottom: 1.2rem;
  margin-top: -0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-location::before {
  content: '\1F4CD'; /* 📍 */
  font-size: 1.2em;
  color: var(--primary-pink-dark);
}

.services {
  padding: 4rem 2rem 2rem 2rem;
  text-align: center;
  background: var(--primary-white);
}
.services h2 {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  color: var(--primary-pink-dark);
  margin-bottom: 0.5rem;
}
.services-desc {
  color: var(--primary-black);
  margin-bottom: 2.5rem;
}
.service-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
}
.card {
  background: var(--primary-white);
  border-radius: 30px;
  box-shadow: 0 4px 24px rgba(248,187,208,0.10);
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-height: 260px;
  height: 260px;
  margin-bottom: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #f8bbd0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(248,187,208,0.18);
}
.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-pink-dark);
}
.card h3 {
  color: var(--primary-pink-dark);
  margin-bottom: 0.5rem;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
}
.card p {
  color: var(--primary-black);
  font-size: 1rem;
}

.service-cards .card:first-child {
  background-image: url('Hair Salon.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--primary-white);
  overflow: hidden;
}
/* Remove the overlay from the first service card */
.service-cards .card:first-child::before {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 3px 0;
  background: var(--primary-pink-dark);
  border-radius: 2px;
  transition: 0.3s;
}

.gallery-section {
  padding: 4rem 2rem 2rem 2rem;
  background: var(--primary-pink);
  text-align: center;
}
.gallery-section h2 {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  color: var(--primary-pink-dark);
  margin-bottom: 2rem;
}
.gallery-grid {
  column-count: 4;
  column-gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@keyframes galleryFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes galleryImageFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: var(--primary-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(236,64,122,0.08);
  position: relative;
  opacity: 0;
  animation: galleryImageFadeIn 0.9s cubic-bezier(.4,0,.2,1) forwards;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s, filter 0.3s;
  min-width: 0;
}
.gallery-item:hover {
  transform: scale(1.045) translateY(-6px);
  box-shadow: 0 8px 32px rgba(236,64,122,0.18);
  filter: brightness(1.08);
  z-index: 2;
}
.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.3s, filter 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.12) saturate(1.1);
}
.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.10s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.20s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.30s; }
.gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-item:nth-child(8) { animation-delay: 0.40s; }
.gallery-item:nth-child(9) { animation-delay: 0.45s; }
.gallery-item:nth-child(10) { animation-delay: 0.50s; }
.gallery-item:nth-child(11) { animation-delay: 0.55s; }
.gallery-item:nth-child(12) { animation-delay: 0.60s; }

.gallery-btn {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: rgba(236,64,122,0.92);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 0.35em 1.1em;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(236,64,122,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  z-index: 3;
  opacity: 0.92;
}
.gallery-btn:hover {
  background: #fff;
  color: #ec407a;
  box-shadow: 0 4px 16px rgba(236,64,122,0.18);
  opacity: 1;
  transform: translateX(-50%) scale(1.07);
}

@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
  }
}
@media (max-width: 900px) {
  .hero, .services, .gallery-section, .contact-section, .footer, .service-cards {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .navbar {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 7rem 1.5rem 2rem 1.5rem;
  }
  .service-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .gallery-section {
    padding: 3rem 1rem 1rem 1rem;
  }
  .gallery-grid {
    column-count: 2;
    column-gap: 1rem;
  }
  .gallery-item {
    margin-bottom: 1rem;
  }
  .card {
    margin-bottom: 1.2rem;
    padding: 0.7rem 0.5rem;
  }
}
@media (max-width: 700px) {
  .navbar {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    left: 0;
    right: 0;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 2rem;
    display: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    z-index: 150;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    margin: 0.5rem 0;
  }
  .nav-links a {
    width: 100%;
    padding: 0.75rem 0;
    color: var(--primary-black);
    font-size: 1.1rem;
  }
  .nav-btn {
    display: none;
  }
  .hamburger {
    display: flex;
    right: 1rem;
    left: auto;
    z-index: 1001;
  }
  .hero h1 {
    font-size: clamp(1.1rem, 7vw, 1.7rem);
  }
  .services h2, .gallery-section h2, .contact-section h2, .footer-logo {
    font-size: clamp(1rem, 6vw, 1.3rem);
  }
  .card h3 {
    font-size: clamp(1rem, 5vw, 1.1rem);
  }
  .hero p, .services-desc, .contact-desc, .card p, .gallery-section p, .footer-tagline, .footer-contact, .footer-links a, .footer-newsletter label, .footer-copyright {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }
  .card, .gallery-item, .card-img {
    padding: 0.2rem 0 !important;
  }
  .scissors-icon {
    height: 28px;
    width: 28px;
  }
}

@media (max-width: 600px) {
  .footer, .footer-content, .footer-newsletter, .contact-section, .gallery-section, .services, .hero, .service-cards {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .gallery-section {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .gallery-grid {
    column-count: 1;
  }
  .card {
    width: 100vw;
    min-height: 160px;
    height: 160px;
    max-width: 100%;
  }
}

/* Hamburger animation for open state (optional, JS toggles 'open' class on hamburger) */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
} 

.card-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin-bottom: 0;
  border-radius: 0;
  background: #f8bbd0;
  min-width: 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-content-overlay {
  display: contents;
}
.card .icon,
.card h3,
.card p {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.card .icon {
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  color: var(--primary-pink-dark);
  text-shadow: 0 2px 8px rgba(255,255,255,0.18), 0 2px 8px rgba(0,0,0,0.35);
}
.card h3 {
  color: var(--primary-pink-dark);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(255,255,255,0.18), 0 2px 8px rgba(0,0,0,0.35);
}
.card p {
  color: var(--primary-black);
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(255,255,255,0.18), 0 2px 8px rgba(0,0,0,0.35);
} 

.contact-section {
  padding: 4rem 2rem 2rem 2rem;
  background: var(--primary-white);
  text-align: center;
}
.contact-section h2 {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  color: var(--primary-pink-dark);
  margin-bottom: 0.5rem;
}
.contact-desc {
  color: var(--primary-black);
  margin-bottom: 2.5rem;
}
.contact-form {
  max-width: 420px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  border: 1.5px solid #f8bbd0;
  font-size: 1rem;
  font-family: inherit;
  background: #fdf6fa;
  color: var(--primary-black);
  resize: none;
  outline: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary-pink-dark);
}
.contact-form button,
.contact-whatsapp .btn {
  min-width: 160px;
  padding: 0.7rem 2.2rem;
  font-size: 1.05rem;
  box-sizing: border-box;
}
.contact-whatsapp {
  margin-top: 1.5rem;
}
.contact-whatsapp .btn {
  font-size: 1.05rem;
  padding: 0.7rem 2.2rem;
}
@media (max-width: 600px) {
  .contact-section {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .contact-form {
    max-width: 100%;
  }
} 

.footer {
  background: #23160d;
  color: #fff8f0;
  padding: 3rem 0 1.2rem 0;
  font-family: 'Montserrat', Arial, sans-serif;
  border-top: 6px solid #a67c52;
  margin-top: 3rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 0 2rem;
}
.footer-brand {
  flex: 1 1 220px;
}
.footer-logo {
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 700;
  color: #f8bbd0;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: #ffe0b2;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.footer-contact {
  flex: 1 1 200px;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  color: #ffe0b2;
  margin-bottom: 1.2rem;
}
.footer-contact a {
  color: #ffe0b2;
  text-decoration: underline dotted;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f8bbd0;
}
.footer-social {
  flex: 1 1 120px;
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}
.footer-icon {
  color: #ffe0b2;
  background: #3e2723;
  border-radius: 50%;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  border: 2px solid #a67c52;
}
.footer-icon:hover {
  background: #f8bbd0;
  color: #23160d;
  border-color: #f8bbd0;
}
.footer-links {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.footer-links a {
  color: #ffe0b2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}
.footer-links a:hover {
  color: #f8bbd0;
  text-decoration: underline wavy;
}
.footer-newsletter {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: #2d1a0e;
  padding: 1.2rem 1rem;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(166,124,82,0.08);
}
.footer-newsletter label {
  color: #ffe0b2;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  margin-bottom: 0.3rem;
  text-align: left;
}
.newsletter-row {
  display: flex;
  gap: 0.5rem;
}
.footer-newsletter input[type="email"] {
  flex: 1 1 auto;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1.5px solid #a67c52;
  font-size: 1rem;
  background: #fff8f0;
  color: #23160d;
  outline: none;
  transition: border 0.2s;
}
.footer-newsletter input[type="email"]:focus {
  border: 1.5px solid #f8bbd0;
}
.footer-newsletter button {
  background: #a67c52;
  color: #fff8f0;
  border: none;
  border-radius: 12px;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.footer-newsletter button:hover {
  background: #f8bbd0;
  color: #23160d;
}
.footer-copyright {
  text-align: center;
  color: #ffe0b2;
  font-size: clamp(0.95rem, 2.5vw, 0.98rem);
  margin-top: 2.2rem;
  letter-spacing: 0.5px;
  border-top: 1px solid #a67c52;
  padding-top: 1.2rem;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 1rem;
  }
  .footer-newsletter {
    width: 100%;
    margin-top: 1.2rem;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 2rem 0 0.7rem 0;
  }
  .footer-content {
    padding: 0 0.5rem;
    gap: 1.2rem;
  }
  .footer-newsletter {
    padding: 1rem 0.5rem;
  }
} 

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-content > * {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.services.fade-in,
.gallery-section.fade-in,
.contact-section.fade-in,
.footer.fade-in {
  animation-delay: 0.2s;
} 