/* Main CSS for Rare Incense Subscription Template */

/* Color Palette - 5 Primary Pastel Colors with Light/Dark Shades */
:root {
  /* Primary Colors */
  --color-primary: #B19CD9;    /* Soft Purple */
  --color-secondary: #C2DFD0;  /* Mint Green */
  --color-accent: #F2C7A7;     /* Peach */
  --color-neutral: #E8E3D3;    /* Warm Beige */
  --color-highlight: #FFB3BA;  /* Soft Pink */
  
  /* Light Shades */
  --color-primary-light: #D6C7F7;
  --color-secondary-light: #E0F2E6;
  --color-accent-light: #F8DCC6;
  --color-neutral-light: #F5F1E8;
  --color-highlight-light: #FFDBDD;
  
  /* Dark Shades */
  --color-primary-dark: #9A7DB3;
  --color-secondary-dark: #A8C4B5;
  --color-accent-dark: #E8A875;
  --color-neutral-dark: #D4CCB8;
  --color-highlight-dark: #FF8A94;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
}

/* Conservative Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background-color: var(--color-neutral-light);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary-light));
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-blob-1 {
  top: 10%;
  right: 10%;
  background-color: var(--color-accent);
}

.hero-blob-2 {
  bottom: 15%;
  left: 5%;
  background-color: var(--color-highlight);
  width: 150px;
  height: 150px;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border: 2px solid var(--color-neutral);
}

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

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* Team Section */
.team-member {
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-color: var(--color-neutral);
}

/* Reviews/Testimonials */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-neutral);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

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

/* Process Steps */
.process-step {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid var(--color-secondary);
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
}

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

.form-control {
  border: 2px solid var(--color-neutral);
  border-radius: 8px;
  padding: 0.75rem;
}

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

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* Footer - High Contrast Colors Only */
.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer a {
  color: #bdc3c7;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

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

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

/* Breadcrumbs */
.breadcrumb-image {
  width: 24px;
  height: 24px;
  background-color: var(--color-neutral);
  border-radius: 4px;
}

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

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .service-card,
  .team-member,
  .review-card {
    margin-bottom: 1.5rem;
  }
} 

.hero-section h1 {
    padding-top: 225px;
}


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

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

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