/* Paupelus - Haute Coiffure & Luxury Hair Esthetic Design System */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
  --bg-main: #0c0b0f;
  --bg-surface: #14131a;
  --bg-card: rgba(26, 25, 34, 0.7);
  --bg-card-hover: rgba(35, 33, 46, 0.85);
  
  --gold-primary: #e6c887;
  --gold-light: #fae8be;
  --gold-dark: #b8974d;
  --gold-gradient: linear-gradient(135deg, #e6c887 0%, #fae8be 50%, #b8974d 100%);
  
  --rose-subtle: #f5d6ce;
  --text-main: #f8f7f9;
  --text-muted: #a6a3b2;
  --border-subtle: rgba(230, 200, 135, 0.15);
  --border-active: rgba(230, 200, 135, 0.45);
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --blur-glass: blur(16px);
  --shadow-luxury: 0 20px 40px -15px rgba(0,0,0,0.7), 0 0 30px rgba(230, 200, 135, 0.08);
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at 50% 0%, #1c1926 0%, #0c0b0f 70%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #2a2836;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Global Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold-gradient);
  color: #0c0b0f;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(230, 200, 135, 0.3);
  transition: all 0.35s var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(230, 200, 135, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  color: var(--text-main);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-active);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.35s var(--transition-smooth);
}

.btn-outline:hover {
  background: rgba(230, 200, 135, 0.1);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

/* Editorial Statement Banner */
.editorial-banner {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, rgba(12,11,15,1) 0%, rgba(20,19,26,0.6) 50%, rgba(12,11,15,1) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.editorial-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.editorial-quote {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--gold-light);
  border-left: 2px solid var(--gold-dark);
  padding-left: 1.8rem;
}

.editorial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.editorial-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.feat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-primary);
  display: block;
}

.feat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Care & Hair Guide Section */
.hair-guide-section {
  padding: 6rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.guide-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.guide-card:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.guide-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(230, 200, 135, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.guide-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: #ffffff;
}

.guide-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.whatsapp-label {
  background: rgba(18, 17, 24, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(230, 200, 135, 0.3);
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fe574 0%, #1ea951 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  position: relative;
  transition: all 0.3s var(--transition-smooth);
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.9; }
  60% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

.floating-whatsapp:hover .whatsapp-btn {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--transition-smooth);
}

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

/* Responsive Rules (Base & Widgets) */
@media (max-width: 1024px) {
  .editorial-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .guide-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .editorial-features {
    grid-template-columns: 1fr;
  }
  
  .floating-whatsapp {
    bottom: 1.2rem;
    right: 1.2rem;
  }
  
  .whatsapp-label {
    display: none;
  }
}
