/* Artisan Bath Products Subscription Template - Main CSS */

:root {
  /* Primary Colors - Pastel High Contrast */
  --primary-lavender: #A8A5D9;
  --primary-sage: #B8C5A6;
  --primary-cream: #F5F1E8;
  --primary-terracotta: #D4A574;
  --primary-slate: #6B7B8C;
  
  /* Light Shades */
  --light-lavender: #D1CFE8;
  --light-sage: #D4E0C7;
  --light-cream: #FAF8F3;
  --light-terracotta: #E8C99B;
  --light-slate: #9AA7B5;
  
  /* Dark Shades */
  --dark-lavender: #7A76B3;
  --dark-sage: #8A9A79;
  --dark-cream: #E8E0D0;
  --dark-terracotta: #B58A52;
  --dark-slate: #515D6B;
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-slate);
  background-color: var(--light-cream);
}

.navbar-brand {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-slate);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-slate);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark-slate);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-slate);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-slate);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-slate);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--primary-terracotta);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

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

/* Navigation */
.navbar {
  background-color: var(--primary-cream);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--dark-slate);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-lavender);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-lavender);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Cards and Service Items */
.card {
  border: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background-color: white;
  border-radius: 10px;
}

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

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: 2px solid var(--light-sage);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin: 1rem 0;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

/* Forms */
.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

.btn-primary:hover {
  background-color: var(--dark-lavender);
  border-color: var(--dark-lavender);
  transform: translateY(-2px);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-sage);
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

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

.faq-answer {
  color: var(--primary-slate);
  margin: 0;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--light-sage);
  height: 100%;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-lavender);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin: 1rem 0;
}

/* Footer */
.footer {
  background-color: var(--dark-slate);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-lavender);
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: var(--primary-lavender);
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Utility Classes */
.bg-primary-light {
  background-color: var(--light-cream);
}

.bg-secondary-light {
  background-color: var(--light-lavender);
}

.text-primary-color {
  color: var(--primary-lavender);
}

/* Responsive Media Queries */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .price-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
