/* ====================================
   ARTISAN BATH PRODUCTS - MAIN STYLES
   Bootstrap 5 Integration | No Overrides
   ==================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap');

/* Root Variables - Pastel Color Palette */
:root {
  /* Primary Colors */
  --primary-lavender: #E6E2F0;
  --primary-sage: #D4E4D6;
  --primary-peach: #F5E6D3;
  --primary-mint: #D3F0E6;
  --primary-blush: #F0D4E4;
  
  /* Light Shades */
  --light-lavender: #F2F0F7;
  --light-sage: #E8F2EA;
  --light-peach: #FAF0E8;
  --light-mint: #E8F7F2;
  --light-blush: #F7E8F2;
  
  /* Dark Shades */
  --dark-lavender: #B8B0C7;
  --dark-sage: #A8C2AB;
  --dark-peach: #E6D0B3;
  --dark-mint: #A8E6D0;
  --dark-blush: #E6B8D4;
  
  /* Neutral Colors */
  --text-primary: #2C2C2C;
  --text-secondary: #5A5A5A;
  --text-muted: #8A8A8A;
  --bg-light: #FEFEFE;
  --bg-section: #F9F9F9;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Conservative Font Sizes */
  --fs-h1: 2.25rem;
  --fs-h2: 1.875rem;
  --fs-h3: 1.5rem;
  --fs-h4: 1.25rem;
  --fs-h5: 1.125rem;
  --fs-h6: 1rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-brand: 1.5rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-padding: 0 1rem;
}

/* Base Typography */
body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
}

/* Conservative Heading Sizes */
h1, .h1 { 
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}

h2, .h2 { 
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
}

h3, .h3 { 
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.4;
}

h4, .h4 { 
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.4;
}

h5, .h5 { 
  font-size: var(--fs-h5);
  font-weight: 600;
  line-height: 1.4;
}

h6, .h6 { 
  font-size: var(--fs-h6);
  font-weight: 600;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-family: var(--font-heading);
  font-size: var(--fs-brand);
  font-weight: 600;
  color: var(--text-primary);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--bg-section);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-lavender) 0%, var(--primary-sage) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--light-peach);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 175px;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-sage);
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary-sage);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary-lavender);
  background: linear-gradient(135deg, var(--light-lavender) 0%, white 100%);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-peach);
}

/* Review Cards */
.review-card {
  background: var(--light-mint);
  border-radius: 12px;
  padding: 2rem;
  border: none;
  margin-bottom: 1.5rem;
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-sage);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-lavender);
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--primary-sage);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-lavender);
  box-shadow: 0 0 0 0.2rem rgba(230, 226, 240, 0.25);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-mint) 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-sage) 0%, var(--dark-mint) 100%);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid var(--primary-sage);
  color: var(--primary-sage);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-sage);
  color: white;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-sage) 0%, var(--dark-lavender) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-mint);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 0;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-sage);
}

.bg-primary-custom {
  background-color: var(--primary-lavender);
}

.bg-gradient-custom {
  background: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-blush) 100%);
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form States */
.form-control:invalid {
  border-color: #dc3545;
}

.form-control:valid {
  border-color: var(--primary-sage);
}

/* Smooth scroll for anchor navigation */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-sage);
  outline-offset: 2px;
}



/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Additional Page Layouts */
.page-header {
  background: linear-gradient(135deg, var(--primary-lavender) 0%, var(--primary-peach) 100%);
  padding: 4rem 0 2rem;
  text-align: center;
}

.content-section {
  padding: 3rem 0;
}

.content-section:nth-child(even) {
  background-color: var(--bg-section);
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
