* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

:root {
  --primary: #c62828;        /* Deep Red */
  --primary-dark: #b71c1c;   /* Darker Red */
  --accent: #d7a245;         /* Yellow-Brown / Amber */
  --light: #fdf9f3;          /* Warm off-white */
  --dark: #222;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --glow: 0 0 15px rgba(198, 40, 40, 0.3);
}

body {
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  box-shadow: var(--shadow);
  position: relative;
}

/* FANCY AUTOMATED SLIDER */
.hero-slider {
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.slide.active {
  opacity: 1;
}

.slide-content {
    position: relative;
  text-align: right;
  animation: fadeInUp 1s ease-out;
  max-width: 80%;
  left: -40px;

}

.fancy-title {
  .fancy-title {
    position: absolute;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-align: right;
  padding: 0 1rem;
  
}

.fancy-title span {
  color: var(--accent);
  font-weight: 900;
  display: block;
  margin-top: 0.1em;
}
}

.fancy-title span {
  color: var(--accent);
  font-weight: 900;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 350px;
  margin: 0 auto 1.5rem;
  font-style: italic;
}

/* Slide Dots */
.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot:hover,
.dot.active {
  background: white;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MAIN CONTENT */
.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1rem 70px;
}

/* FANCY CARDS */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow), var(--shadow);
}

.fancy-card h2 {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  position: relative;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.fancy-card h2 i {
  margin-right: 10px;
  color: var(--accent);
  font-size: 1.3rem;
}

.fancy-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

/* === ENHANCED TEXT STYLING === */
.intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.2rem;
  position: relative;
}

.intro-text strong {
  color: var(--primary);
  font-weight: 700;
}

.highlight-badge {
  background: linear-gradient(135deg, var(--accent), #e8b85a);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  box-shadow: 0 4px 8px rgba(215, 162, 69, 0.3);
}

/* === ENHANCED SERVICE ITEMS === */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item.premium {
  padding: 1.2rem;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-item.premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-color: rgba(215, 162, 69, 0.3);
}

.service-item.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}

.service-item.premium:hover::before {
  transform: scaleY(1);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.service-header h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.price-badge {
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(198, 40, 40, 0.3);
}

.service-desc {
  color: #555;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-features span {
  background: rgba(215, 162, 69, 0.1);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 1rem;
}

.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.gallery img:hover {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* CONTACT INFO */
.contact-info {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  transition: all 0.2s;
}

.contact-item:hover {
  background: white;
  transform: translateX(5px);
}

.contact-item i {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: var(--primary);
  flex-shrink: 0;
}

/* BOOKING BUTTON */
.booking-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.booking-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.booking-btn .fab.fa-instagram {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Jump animation for booking button when in view */
.booking-btn.jumping {
  animation: jump 3s infinite;
}

@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* FOOTER NOTE */
.footer-note {
  text-align: center;
  padding: 1.5rem 1.5rem 2rem;
  font-size: 0.85rem;
  color: #777;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(5px);
}

/* FIXED BOTTOM NAVIGATION */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  background: white;
  border-top: 1px solid #eee;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 0.9rem 0;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
  position: relative;
}

.bottom-nav a.active,
.bottom-nav a:hover {
  color: var(--primary);
  font-weight: 600;
}

.bottom-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.bottom-nav i {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

/* RESPONSIVE */
@media (max-width: 500px) {
  .app-container {
    border-radius: 0;
  }
  .hero-slider {
    height: 250px;
  }
  .fancy-title {
    font-size: 1.8rem;
  }
  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .price-badge {
    align-self: flex-start;
  }
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 1rem;
  box-shadow: var(--shadow);
}

.salon-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Hide video controls */
.salon-video::-webkit-media-controls {
  display:none !important;
}

/* For Firefox */
.salon-video {
  -moz-appearance: none;
  height: 600px;
}

/* For Edge/IE */
.salon-video::-ms-controls {
  display: none;
}