/* ========================================
   IVY SPA STUDIO - Premium Nail Spa Website
   ======================================== */

/* Google Fonts - Million Dollar Luxury Typography */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* CSS Variables */
:root {
  /* Primary Gradient Colors */
  --orange: #FCAF45;
  --pink-red: #FD1D1D;
  --coral: #F56040;
  --soft-yellow: #FFDC80;
  --gradient-primary: linear-gradient(135deg, #FCAF45 0%, #FD1D1D 50%, #F56040 75%, #FFDC80 100%);
  --gradient-soft: linear-gradient(135deg, rgba(252, 175, 69, 0.15) 0%, rgba(253, 29, 29, 0.15) 50%, rgba(255, 220, 128, 0.15) 100%);
  --gradient-hero: linear-gradient(135deg, #FCAF45 0%, #FD1D1D 25%, #F56040 60%, #FFDC80 100%);
  
  /* Secondary Colors */
  --white: #FFFFFF;
  --black: #0a0a0a;
  --black-soft: #141414;
  --nude-beige: #F5EDE4;
  --blush-pink: #FFE4E1;
  --text-dark: #2D2A26;
  --text-muted: #6B6560;
  --text-on-dark: rgba(255,255,255,0.95);
  --text-muted-on-dark: rgba(255,255,255,0.7);
  
  /* Typography - Million Dollar Luxury */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-story: 'Cormorant Garamond', Georgia, serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, sans-serif;
  
  /* Spacing & Layout */
  --nav-height: 80px;
  --section-padding: 100px;
  --container-max: 1200px;
  
  /* Effects */
  --shadow-soft: 0 10px 40px rgba(45, 42, 38, 0.08);
  --shadow-elevated: 0 20px 60px rgba(45, 42, 38, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  min-height: 52px;
}

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-on-dark);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 12px 28px;
  font-size: 1.1rem;
  background: var(--gradient-primary);
  color: white !important;
  border-radius: 50px;
  -webkit-text-fill-color: white;
  font-weight: 600;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 29, 29, 0.35);
}

.nav__cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 25 L55 30 L35 35 L30 55 L25 35 L5 30 L25 25 Z' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3C/svg%3E");
}

.hero__deco {
  position: absolute;
  stroke: rgba(255,255,255,0.4);
  fill: none;
  stroke-width: 1;
  pointer-events: none;
}

.hero__deco--1 { top: 15%; left: 10%; width: 80px; height: 80px; }
.hero__deco--2 { top: 60%; right: 8%; width: 60px; height: 60px; }
.hero__deco--3 { bottom: 20%; left: 15%; width: 100px; height: 100px; }

.hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__logo-img {
  max-width: min(320px, 70vw);
  height: auto;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.15));
}

.hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards, taglineFloat 4s ease-in-out 1.4s infinite;
}

@keyframes taglineFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.btn--primary {
  background: white;
  color: var(--pink-red);
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  transform: translateY(-3px);
}

.btn--gradient {
  background: var(--gradient-primary);
  color: white;
}

.btn--gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(253, 29, 29, 0.4);
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--section-padding) 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section--light {
  background: var(--nude-beige);
}

.section--gradient {
  background: var(--gradient-soft);
}

/* Black sections - makes colors pop */
.section--dark {
  background: var(--black);
  color: var(--text-on-dark);
}

/* Services section - lighter background for visibility */
.section--services {
  background: linear-gradient(180deg, #2d2d2d 0%, #3a3a3a 100%);
  color: #ffffff;
}

.section--services .section__label {
  color: var(--coral);
}

.section--services .section__title {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.section--services .section__subtitle {
  color: rgba(255,255,255,0.9);
}

.section--services .service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
}

.section--services .service-card__title {
  color: #ffffff;
}

.section--services .service-card__desc {
  color: rgba(255,255,255,0.9);
}

.section--services .service-card__price {
  color: var(--soft-yellow);
}

.section--services .service-card__icon {
  color: var(--coral);
}

.section--services .service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245, 96, 64, 0.5);
}

.section--services .btn--outline {
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}

.section--services .btn--outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.15);
}

.section--services .price-list__title {
  color: #ffffff;
}

.section--services .price-list__note {
  color: rgba(255,255,255,0.85);
}

.section--services .price-list__group {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.section--services .price-list__group-title {
  color: var(--coral);
}

.section--services .price-list__service {
  color: rgba(255,255,255,0.95);
}

.section--services .price-list__price {
  color: var(--soft-yellow);
}

.section--dark .section__label {
  color: var(--coral);
}

.section--dark .section__title {
  color: var(--white);
}

.section--dark .section__subtitle {
  color: var(--text-muted-on-dark);
}

.section--dark .about__text h3 {
  color: var(--white);
}

.section--dark .about__text p {
  color: var(--text-muted-on-dark);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== ABOUT ========== */
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

/* Our Story section – distinct typography */
.our-story-section .section__label,
.our-story-section .section__title,
.our-story-section .section__subtitle,
.our-story-section .about__text h3,
.our-story-section .about__text p {
  font-family: var(--font-story);
}

.our-story-section .about__text p {
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.about__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Placeholder for about image - use gradient */
.about__image-placeholder {
  width: 100%;
  height: 400px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.section--dark .service-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.section--dark .service-card__title {
  color: var(--white);
}

.section--dark .service-card__desc {
  color: var(--text-muted-on-dark);
}

.section--dark .service-card:hover {
  border-color: rgba(245, 96, 64, 0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--coral);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card__price {
  color: var(--soft-yellow);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section--dark .service-card__price {
  color: var(--coral);
}

.service-card__btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Service card with nail image overlay */
.service-card--image {
  padding: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.service-card--image .service-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-card--image .service-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card--image .service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}

.service-card--image .service-card__content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
}

.service-card--image .service-card__title {
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
}

.service-card--image .service-card__desc {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.9) !important;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.service-card--image .service-card__price {
  color: var(--soft-yellow) !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
  font-weight: 700 !important;
}

.service-card--image::before {
  display: none;
}

/* ========== PRICE LIST ========== */
.price-list {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Services page - compact layout, joins footer */
.page-services .section--services {
  padding: 48px 24px 40px;
}

.page-services .price-list {
  margin-top: 32px;
  padding-top: 40px;
}

.page-services .price-list__note {
  margin-bottom: 28px;
}

.page-services .price-list__grid {
  gap: 18px;
}

.page-services .price-list__group {
  padding: 18px 20px;
}

.page-services .services-grid {
  margin-top: 40px;
  gap: 20px;
}

.page-services .service-card {
  padding: 28px 24px;
}

.page-footer--compact {
  padding-top: 48px;
}

@media (max-width: 768px) {
  .page-services .section--services {
    padding: 36px 20px 32px;
  }

  .page-services .price-list {
    margin-top: 24px;
    padding-top: 32px;
  }

  .page-services .services-grid {
    margin-top: 32px;
  }

  .page-footer--compact {
    padding-top: 40px;
  }
}

.price-list__title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.price-list__note {
  font-family: var(--font-sans);
  text-align: center;
  color: var(--text-muted-on-dark);
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 40px;
}

.price-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: visible;
}

.price-list__group {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition-smooth);
}

.price-list__group:hover {
  border-color: rgba(245, 96, 64, 0.4);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.price-list__group-title {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(245, 96, 64, 0.3);
  letter-spacing: 0.02em;
}

.price-list__items {
  list-style: none;
}

.price-list__items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.price-list__items li:last-child {
  border-bottom: none;
}

.price-list__service {
  font-family: var(--font-sans);
  color: var(--text-on-dark);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 500;
}

.price-list__price {
  font-family: var(--font-sans);
  color: var(--soft-yellow);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__title {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item__title {
  transform: translateY(0);
}

/* Gallery Filter */
.gallery-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter__btn {
  padding: 12px 24px;
  min-height: 44px;
  border: 2px solid var(--nude-beige);
  background: white;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-filter__btn:hover,
.gallery-filter__btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.section--dark .gallery-filter__btn {
  background: var(--black-soft);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-on-dark);
}

.section--dark .gallery-filter__btn:hover,
.section--dark .gallery-filter__btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

/* Masonry for gallery page */
.gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.lightbox__close:hover {
  background: var(--gradient-primary);
  color: white;
}

/* ========== TESTIMONIALS ========== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  text-align: center;
  padding: 40px 30px;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial__author {
  font-weight: 600;
  color: var(--text-dark);
}

.section--dark .testimonial__quote {
  color: var(--text-on-dark);
}

.section--dark .testimonial__author {
  color: var(--white);
}

.testimonial__stars {
  margin-top: 12px;
  color: var(--soft-yellow);
  font-size: 1.2rem;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--gradient-hero);
  padding: 80px 40px;
  text-align: center;
  border-radius: var(--radius);
  margin: 60px 24px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  border: 2px solid rgba(255,255,255,0.2);
}

.section--dark .cta-banner {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: white;
  margin-bottom: 16px;
}

.cta-banner__text {
  color: rgba(255,255,255,0.95);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* CTA button hover pulse effect */
.cta-banner .btn--primary.btn--pulse {
  animation: btnPulse 1.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { transform: translateY(-3px) scale(1); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
  50% { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: var(--text-muted-on-dark);
  padding: 80px 24px 40px;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

.footer__heading {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 20px;
  color: white;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link:hover {
  color: var(--soft-yellow);
}

/* Newsletter */
.newsletter {
  display: flex;
  gap: 0;
  margin-top: 16px;
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter__input:focus {
  outline: none;
}

.newsletter__btn {
  padding: 14px 24px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter__btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer__powered {
  color: var(--coral);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer__powered:hover {
  color: var(--soft-yellow);
  text-decoration: underline;
}

/* ========== PAGE HEADER ========== */
.page-hero {
  padding: calc(var(--nav-height) + 120px) 24px 80px;
  text-align: center;
  background: var(--black);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted-on-dark);
}

/* ========== FORMS ========== */
.form-elegant {
  max-width: 560px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
}

/* Booking form - visible, blends with site colors */
.form-booking {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(45, 42, 38, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
  border: 1px solid rgba(245, 96, 64, 0.25);
  padding: 40px 36px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.section--booking .form-booking .form-group {
  margin-bottom: 22px;
}

.section--booking .form-booking .form-group label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--soft-yellow);
  font-size: 0.95rem;
}

.section--booking .form-booking .form-group input,
.section--booking .form-booking .form-group select,
.section--booking .form-booking .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.section--booking .form-booking .form-group input::placeholder,
.section--booking .form-booking .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.section--booking .form-booking .form-group select {
  cursor: pointer;
  min-height: 48px;
}

.section--booking .form-booking .form-group select option {
  background: var(--black-soft);
  color: #fff;
}

.section--booking .form-booking .form-group input[type="date"],
.section--booking .form-booking .form-group input[type="time"] {
  color-scheme: dark;
}

.section--booking .form-booking .form-group input:focus,
.section--booking .form-booking .form-group select:focus,
.section--booking .form-booking .form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(245, 96, 64, 0.2);
}

.section--booking .form-booking .form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.section--booking .form-booking .form-submit {
  width: 100%;
  padding: 16px 24px;
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.section--booking .form-booking .form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 96, 64, 0.4);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--nude-beige);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(245, 96, 64, 0.15);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 12px;
  font-size: 1rem;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.contact-info__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info__value {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-info__value a:hover {
  color: var(--coral);
}

.section--dark .contact-info__value,
.section--dark .contact-info__value a {
  color: var(--text-on-dark);
}

.section--dark .contact-info__label {
  color: var(--text-muted-on-dark);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn--whatsapp {
  border-color: #25D366 !important;
  color: #25D366 !important;
}

.btn--whatsapp:hover {
  background: rgba(37, 211, 102, 0.1) !important;
  border-color: #25D366 !important;
  color: #25D366 !important;
}

/* ========== WHY CHOOSE US ========== */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.feature-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 1.25rem;
}

.feature-item__title {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.feature-item__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section--dark .feature-item {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
}

.section--dark .feature-item__title {
  color: var(--white);
}

.section--dark .feature-item__text {
  color: var(--text-muted-on-dark);
}

.section--dark .feature-item:hover {
  border-color: rgba(245, 96, 64, 0.3);
}

/* ========== INSTAGRAM SECTION ========== */
.instagram-section {
  padding: var(--section-padding) 24px;
}

.instagram-section:not(.section--dark) {
  background: var(--nude-beige);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-weight: 600;
  color: var(--coral);
}

.instagram-link:hover {
  color: var(--pink-red);
}

.section--dark .instagram-link {
  color: var(--coral);
}

.section--dark .instagram-link:hover {
  color: var(--soft-yellow);
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  right: max(24px, env(safe-area-inset-right));
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition-smooth);
}

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

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes floatReverse {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(10px) rotate(-2deg);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards;
}

/* Staggered entrance for cards/grid items */
.fade-in.fade-scale {
  transform: translateY(20px) scale(0.95);
}

.fade-in.fade-scale.visible {
  animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Hero decoration floating effect */
.hero__deco--1 {
  animation: float 6s ease-in-out infinite;
}

.hero__deco--2 {
  animation: floatReverse 5s ease-in-out infinite 0.5s;
}

.hero__deco--3 {
  animation: floatSlow 7s ease-in-out infinite 1s;
}

/* Nail line art decorations */
.nail-deco {
  position: absolute;
  stroke: rgba(255,255,255,0.3);
  fill: none;
  stroke-width: 1.5;
  pointer-events: none;
}

/* ========== RESPONSIVE ========== */

/* Laptop / Tablet Landscape */
@media (max-width: 1200px) {
  .section {
    padding: 80px 32px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
    --nav-height: 72px;
  }
  
  .section {
    padding: 80px 24px;
  }
  
  .section__header {
    margin-bottom: 48px;
  }
  
  .about__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about__content .about__text {
    order: 1;
  }
  
  .about__content .about__image {
    order: 2;
  }
  
  .about__image-placeholder,
  .about__image img {
    height: 320px;
  }
  
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info__item {
    margin-bottom: 24px;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-banner {
    padding: 60px 32px;
    margin: 40px 24px;
  }
  
  .page-hero {
    padding: calc(var(--nav-height) + 80px) 24px 60px;
  }
}

/* Tablet Portrait / Large Phone */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --section-padding: 64px;
  }
  
  .nav {
    height: var(--nav-height);
  }
  
  .nav__inner {
    padding: 0 20px;
  }
  
  .nav__logo-img {
    height: 44px;
    min-height: 44px;
  }
  
  .nav__links .nav__link {
    font-size: 1.2rem;
    padding: 12px 0;
  }
  
  .nav__links .nav__cta {
    font-size: 1.15rem;
    padding: 14px 28px;
  }
  
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--black);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  
  .nav__links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero {
    min-height: 100svh;
    padding: var(--nav-height) 20px 60px;
  }
  
  .hero__deco {
    display: none;
  }
  
  .hero__logo-img {
    max-width: min(280px, 85vw);
    margin-bottom: 20px;
  }
  
  .hero__tagline {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    letter-spacing: 0.1em;
    margin-bottom: 32px;
  }
  
  .hero__buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    justify-content: center;
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    min-height: 48px;
  }
  
  .section {
    padding: 64px 20px;
  }
  
  .section__header {
    margin-bottom: 40px;
  }
  
  .section__title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }
  
  .section__subtitle {
    font-size: 0.95rem;
    margin-top: 12px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-list__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-list__title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .price-list__group-title {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
  }

  .price-list__service,
  .price-list__price {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .service-card--image .service-card__price {
    font-size: clamp(1rem, 4vw, 1.15rem) !important;
  }
  
  .service-card {
    padding: 28px 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .gallery-filter {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .gallery-filter__btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .gallery-masonry {
    column-count: 2;
    column-gap: 12px;
  }
  
  .gallery-masonry .gallery-item {
    margin-bottom: 12px;
  }
  
  .testimonial {
    padding: 32px 20px;
  }
  
  .testimonial__quote {
    font-size: 1.2rem;
  }
  
  .cta-banner {
    padding: 48px 24px;
    margin: 32px 16px;
  }
  
  .cta-banner__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .cta-banner__text {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  .footer {
    padding: 60px 20px 32px;
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .footer__logo {
    margin-left: auto;
    margin-right: auto;
    height: 42px;
  }
  
  .newsletter {
    flex-direction: column;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .newsletter__input {
    border-radius: 50px;
    padding: 12px 18px;
  }
  
  .newsletter__btn {
    border-radius: 50px;
    padding: 12px 20px;
  }
  
  .page-hero {
    padding: calc(var(--nav-height) + 60px) 20px 48px;
  }
  
  .page-hero__title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  
  .page-hero__subtitle {
    font-size: 1rem;
  }
  
  .form-elegant {
    padding: 32px 24px;
    margin: 0 20px;
  }

  .form-booking {
    padding: 32px 24px;
    margin: 0 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    min-height: 48px;
  }
  
  .contact-info__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-buttons .btn {
    justify-content: center;
  }

  .contact-map {
    min-height: 250px;
    aspect-ratio: 16/9;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    padding: 24px 20px;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  
  .lightbox {
    padding: 20px;
  }
  
  .lightbox__img {
    max-width: 95%;
    max-height: 85vh;
  }
  
  .lightbox__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --nav-height: 60px;
    --section-padding: 48px;
  }
  
  .nav__logo-img {
    height: 40px;
    min-height: 40px;
  }
  
  .nav__links .nav__link {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 48px 16px;
  }
  
  .section__header {
    margin-bottom: 32px;
  }
  
  .about__image-placeholder,
  .about__image img {
    height: 260px;
  }
  
  .gallery-grid {
    gap: 10px;
  }
  
  .gallery-masonry {
    column-count: 1;
    column-gap: 16px;
  }
  
  .gallery-masonry .gallery-item {
    margin-bottom: 16px;
  }
  
  .cta-banner {
    padding: 40px 20px;
    margin: 24px 12px;
  }
  
  .form-elegant {
    padding: 24px 20px;
    margin: 0 16px;
  }

  .form-booking {
    padding: 28px 20px;
    margin: 0 16px;
  }
  
  .footer__logo {
    height: 38px;
  }
  
  .contact-map {
    min-height: 220px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .hero__buttons .btn {
    max-width: 100%;
  }
  
  .gallery-filter {
    flex-direction: column;
    align-items: stretch;
  }
  
  .gallery-filter__btn {
    text-align: center;
  }
}
