/* ===== CUSTOM STYLES - Salon Krasy ===== */

:root {
  --rose-gold: #B76E79;
  --rose-gold-dark: #9E5A64;
  --powder-pink: #F4E0E1;
  --charcoal: #2D2D2D;
  --cream: #FFF8F0;
  --gold: #C9A96E;
  --gold-light: #D4B97A;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

/* ===== NAVBAR ===== */
.navbar {
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 248, 240, 0.97) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.navbar.scrolled .nav-link {
  color: var(--charcoal) !important;
}

.navbar.scrolled .nav-logo {
  color: var(--rose-gold) !important;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #2D2D2D 0%, #1a1a2e 30%, #3D2B3D 60%, #2D2D2D 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(183, 110, 121, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(183, 110, 121, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 100px,
    rgba(201, 169, 110, 0.02) 100px,
    rgba(201, 169, 110, 0.02) 200px
  );
  pointer-events: none;
  animation: subtleShift 30s linear infinite;
}

@keyframes subtleShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.hero-content {
  position: relative;
  z-index: 10;
}

/* Decorative line */
.decorative-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
  display: inline-block;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold));
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
  display: inline-block;
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
  color: white;
}

/* ===== SECTION STYLING ===== */
.section-heading {
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--rose-gold), var(--gold));
  border-radius: 2px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(244, 224, 225, 0.5);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rose-gold), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(183, 110, 121, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--powder-pink), rgba(244, 224, 225, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--rose-gold), var(--gold));
  transform: scale(1.1);
}

.service-card:hover .service-icon svg {
  stroke: white;
}

/* ===== GALLERY ===== */
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: rgba(183, 110, 121, 0.6);
}

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

/* ===== PRICING ===== */
.price-category {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(244, 224, 225, 0.5);
  transition: box-shadow 0.3s ease;
}

.price-category:hover {
  box-shadow: 0 10px 30px rgba(183, 110, 121, 0.1);
}

.price-category-header {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  padding: 1rem 1.5rem;
  color: white;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(244, 224, 225, 0.5);
  transition: background-color 0.2s ease;
}

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

.price-item:hover {
  background-color: rgba(244, 224, 225, 0.2);
}

.price-value {
  color: var(--rose-gold);
  font-weight: 700;
  white-space: nowrap;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(244, 224, 225, 0.3);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--powder-pink);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.stars {
  color: var(--gold);
}

/* Testimonial slider */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--powder-pink);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--rose-gold);
  transform: scale(1.3);
}

/* ===== CONTACT FORM ===== */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(244, 224, 225, 0.8);
  border-radius: 10px;
  background: white;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.form-success {
  display: none;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #b1dfbb;
  color: #155724;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

.form-success.show {
  display: block;
}

/* ===== CONTACT INFO ===== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--powder-pink), rgba(244, 224, 225, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
}

/* ===== FOOTER ===== */
.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--gold);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--rose-gold);
  transform: translateY(-3px);
  color: white;
}

/* ===== FORGE BANNER ===== */
.forge-banner {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  text-align: center;
  padding: 1rem;
}

.forge-banner a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.forge-banner a:hover {
  text-decoration-thickness: 2px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  animation: heroFadeIn 1s ease forwards;
}

.hero-animate-delay-1 {
  animation: heroFadeIn 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-animate-delay-2 {
  animation: heroFadeIn 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-animate-delay-3 {
  animation: heroFadeIn 1s ease 0.9s forwards;
  opacity: 0;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(255, 248, 240, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-link {
  display: block;
  padding: 0.85rem 0;
  color: var(--charcoal);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 224, 225, 0.5);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--rose-gold);
  padding-left: 10px;
}

/* ===== MAP ===== */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100svh;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ===== ABOUT IMAGE PLACEHOLDER ===== */
.about-image-placeholder {
  background: linear-gradient(135deg, var(--powder-pink), rgba(183, 110, 121, 0.2));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(183, 110, 121, 0.2);
  border-radius: 12px;
}

/* ===== GALLERY PLACEHOLDERS ===== */
.gallery-placeholder {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.gallery-placeholder.tall {
  min-height: 350px;
}

/* ===== OPENING HOURS ===== */
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(244, 224, 225, 0.3);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
}

.hours-closed {
  color: var(--rose-gold);
  font-weight: 600;
}
