:root {
  --primary-brown: #a68164;
  --soft-white: #fdfaf7;
  --dark-text: #333;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-text);
}

h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

/* Navbar */

.navbar {
  padding: 20px 0;
  transition: 0.3s;
  background-color: transparent !important;
}

.navbar.nav-scrolled {
  background-color: rgba(166, 129, 100, 0.95) !important; /* theme primary-brown */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  backdrop-filter: blur(6px);
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin: 0 15px;
}

/* Mobile / tablet: readable nav + working collapse layout */
@media (max-width: 991.98px) {
  .navbar {
    background-color: rgba(166, 129, 100, 0.97) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }

  /* Stronger bar + panel background while menu is open */
  .navbar:has(#navbarNav.show),
  .navbar:has(#navbarNav.collapsing) {
    background-color: rgba(120, 88, 66, 0.98) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }

  .navbar .navbar-brand {
    font-size: 1rem;
    letter-spacing: 2px;
    max-width: calc(100% - 3.5rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  #navbarNav.navbar-collapse.show,
  #navbarNav.navbar-collapse.collapsing {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 12px;
    padding: 0.75rem 1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .navbar .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .navbar .nav-link {
    margin: 0;
    padding: 0.65rem 0.5rem;
    color: rgba(255, 255, 255, 0.95) !important;
  }

  .navbar .nav-link:hover,
  .navbar .nav-link:focus {
    color: #fff !important;
  }

  .navbar .nav-item .btn-outline-light {
    margin-top: 0.5rem;
    width: 100%;
    max-width: 280px;
  }
}

/* Hero Section with the curve effect */

.hero-section {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../../assets/img/NAILS.jpg') center/cover;
  position: relative;
  color: white;
}

.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: white;
  clip-path: ellipse(70% 100% at 50% 100%);
}

/* Service Cards */

.service-card {
  padding: 60px 20px;
  border: 1px solid #eee;
  background: white;
  transition: transform 0.3s ease;
}

.service-card.highlighted {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  z-index: 2;
  border: none;
}

.icon-box {
  font-size: 2rem;
}

/* Section Title Styling */

.section-title {
  margin-top: 80px;
  margin-bottom: 30px;
  font-weight: 400;
}

.text-link {
  color: var(--dark-text);
  text-decoration: underline;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Footer */

.custom-footer {
  background-color: #a67c5f;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  letter-spacing: 1px;
}

.salon-subtitle {
  font-size: 0.8rem;
  letter-spacing: 4px;
  opacity: 0.8;
}

.section-title {
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.service-list li {
  font-size: 0.85rem;
  margin-bottom: 5px;
  opacity: 0.9;
}

.address-info p, .custom-footer p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer {
  background-color: var(--primary-brown);
  color: white;
}

.social-sidebar {
  position: fixed;
  z-index: 1025;
  background: white;
  box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.12);
  gap: 0.25rem;
}

/* Mobile: horizontal pill at bottom (thumb-friendly, doesn’t eat content width) */
@media (max-width: 767.98px) {
  .social-sidebar {
    top: auto;
    left: 50%;
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
  }

  .social-sidebar .social-btn {
    margin: 0 0.15rem;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

/* Tablet / desktop: vertical strip on the left */
@media (min-width: 768px) {
  .social-sidebar {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 10px;
    border-radius: 0 15px 15px 0;
  }

  .social-sidebar .social-btn {
    margin: 8px 0;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effects */

.social-btn:hover {
  transform: scale(1.1);
}

.social-btn.facebook:hover {
  color: #3b5998;
}

.social-btn.instagram:hover {
  color: #e1306c;
}

.social-btn.google:hover {
  color: #db4437;
}

.social-btn.yelp:hover {
  color: #d32323;
}

