/* Art Therapy Workshop - Main CSS */
/* Bootstrap 5 Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Color Palette - High Contrast Pastels */
:root {
  /* Primary Colors */
  --primary-1: #48a3f7; /* Soft Blue */
  --primary-2: #7968e6; /* Medium Slate Blue */
  --primary-3: #94cec1; /* Mint Green */
  --primary-4: #e8d36b; /* Soft Yellow */
  --primary-5: #f3b3d5; /* Soft Pink */
  
  /* Light Shades */
  --light-1: #cfe7fc; /* Light Blue */
  --light-2: #F0EFFF; /* Light Purple */
  --light-3: #dcfffa; /* Light Mint */
  --light-4: #e8e2cb; /* Light Yellow */
  --light-5: #FDF2F8; /* Light Pink */
  
  /* Dark Shades */
  --dark-1: #3365b2; /* Dark Blue */
  --dark-2: #645dd9; /* Dark Purple */
  --dark-3: #578f80; /* Dark Mint */
  --dark-4: #c3ac45; /* Dark Yellow */
  --dark-5: #e32a6f; /* Dark Pink */
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #222020;
  --gray-100: #F8F9FA;
  --gray-200: #ced3d6;
  --gray-300: #cfcfcf;
  --gray-400: #c2d6e0;
  --gray-500: #acb3b7;
  --gray-600: #545f6a;
  --gray-700: #484a4d;
  --gray-800: #252729;
  --gray-900: #2e3137;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

h1 { font-size: 2.61rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.78rem; }
h4 { font-size: 1.55rem; }
h5 { font-size: 1.27rem; }
h6 { font-size: 1.19rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--dark-1);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-1) 100%);
  backdrop-filter: blur(11px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--primary-1) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-700) !important;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: var(--light-3);
  color: var(--dark-3) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-1) 0%, var(--light-3) 50%, var(--light-5) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-3) 0%, transparent 70%);
  opacity: 0.1;
  transform: rotate(45deg);
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.53rem;
  font-weight: 700;
  color: var(--dark-1);
  margin-bottom: 1.66rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.53rem;
  color: var(--primary-2);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.24rem;
  color: var(--gray-600);
  margin-bottom: 2.70rem;
  max-width: 600px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 23px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 2.55rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-1);
}

.section-subtitle {
  font-size: 1.34rem;
  text-align: center;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--light-2) 0%, var(--light-4) 100%);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--gray-200);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-3);
  margin-bottom: 1.59rem;
}

.feature-name {
  font-size: 1.57rem;
  color: var(--dark-1);
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: linear-gradient(135deg, var(--light-3) 0%, var(--light-1) 100%);
  border-radius: 22px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-1) 0%, transparent 70%);
  opacity: 0.05;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.73rem;
}

.service-name {
  font-size: 1.54rem;
  color: var(--dark-1);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-desc {
  color: var(--gray-600);
  margin-bottom: 1.74rem;
  position: relative;
  z-index: 1;
}

.service-features {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 1.65rem;
  position: relative;
  z-index: 1;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-1);
  position: relative;
  z-index: 1;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--light-5) 0%, var(--light-2) 100%);
}

.team-card {
  background: var(--white);
  border-radius: 23px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-3);
}

.team-name {
  font-size: 1.60rem;
  color: var(--dark-1);
  margin-bottom: 0.65rem;
}

.team-role {
  color: var(--primary-2);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background: var(--white);
}

.review-card {
  background: linear-gradient(135deg, var(--light-1) 0%, var(--light-3) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  position: relative;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -14px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-3);
  opacity: 0.3;
}

.review-text {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.59rem;
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  color: var(--dark-1);
  font-size: 1.20rem;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--light-4) 0%, var(--light-1) 100%);
}

.faq-card {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1.65rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-2) 100%);
  color: var(--white);
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--gray-700);
  line-height: 1.6;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--light-2) 0%, var(--light-5) 100%);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  color: var(--dark-1);
  margin-bottom: 0.59rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-1);
  box-shadow: 0 0 0 3px rgba(49, 126, 208, 0.10);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-2) 100%);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.22rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-2) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-3);
  margin-bottom: 1.60rem;
}

.footer p, .footer a {
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-3);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-2) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-3) 0%, var(--primary-4) 100%);
}

.shadow-custom {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.slide-up.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  animation: lightboxFadeIn 0.3s ease forwards;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--primary-1);
  transform: scale(1.1);
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 400px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  transform: translateX(100%);
  animation: notificationSlideIn 0.3s ease forwards;
}

.notification-content {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notification-content i {
  font-size: 1.55rem;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.24rem;
  cursor: pointer;
  color: var(--gray-500);
  transition: color 0.3s ease;
  margin-left: auto;
}

.notification-close:hover {
  color: var(--gray-800);
}

.notification-success {
  border-left: 4px solid var(--primary-3);
}

.notification-success .notification-content i {
  color: var(--primary-3);
}

.notification-error {
  border-left: 4px solid var(--dark-5);
}

.notification-error .notification-content i {
  color: var(--dark-5);
}

.notification-info {
  border-left: 4px solid var(--primary-1);
}

.notification-info .notification-content i {
  color: var(--primary-1);
}

@keyframes notificationSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Navbar Toggler Icon */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 1.5em;
  height: 1.5em;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
  border-radius: 2px;
  height: 2px;
  background-color: var(--primary-1);
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
}

.navbar-toggler-icon::before {
  top: 0.4em;
}

.navbar-toggler-icon::after {
  bottom: 0.4em;
}

/* Loading State */
body.loading {
  overflow: hidden;
}

body.loading::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.loading::after {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 4px solid var(--light-1);
  border-top: 4px solid var(--primary-1);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 100000;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scrolled Navbar */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Progress Bar for Nanobar */
#progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9998;
}

.progress-bar {
  height: 3px;
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-2) 100%);
  transition: width 0.3s ease;
  width: 0%;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
