/* Photography Workshop Template - Main CSS */

/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
/* Import FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
/* Import Google Fonts */
@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');

/* CSS Variables - Color Palette */
:root {
  /* Primary Colors */
  --color-primary-1: #716bfb; /* Indigo */
  --color-primary-2: #ab68ff; /* Purple */
  --color-primary-3: #06c9eb; /* Cyan */
  --color-primary-4: #00a58a; /* Emerald */
  --color-primary-5: #ff9d02; /* Amber */
  
  /* Light Shades */
  --color-light-1: #eef2ff; /* Light Indigo */
  --color-light-2: #f7f1ff; /* Light Purple */
  --color-light-3: #b5e7e5; /* Light Cyan */
  --color-light-4: #d0ffe7; /* Light Emerald */
  --color-light-5: #fff0c5; /* Light Amber */
  
  /* Dark Shades */
  --color-dark-1: #2b2b82; /* Dark Indigo */
  --color-dark-2: #72189c; /* Dark Purple */
  --color-dark-3: #205a70; /* Dark Cyan */
  --color-dark-4: #073728; /* Dark Emerald */
  --color-dark-5: #9b580c; /* Dark Amber */
  
  /* Neutral Colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-100: #f8fafc;
  --color-gray-200: #e0e1e1;
  --color-gray-300: #b3bac8;
  --color-gray-400: #8594a3;
  --color-gray-500: #6b7e92;
  --color-gray-600: #424d56;
  --color-gray-700: #28324e;
  --color-gray-800: #29334d;
  --color-gray-900: #070b18;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Font Sizes - Conservative */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-gray-700);
  background-color: var(--color-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-gray-800);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5, h6 { font-size: var(--fs-base); }

p {
  margin-bottom: 1rem;
  color: var(--color-gray-600);
}

/* Header & Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 3px 23px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-primary-1) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-gray-700) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary-1) !important;
}

/* Bootstrap Navbar Toggler */
.navbar-toggler {
  border: 1px solid var(--color-primary-1);
  border-radius: 4px;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(88, 107, 222, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236366f1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-light-1) 0%, var(--color-light-3) 100%);
  display: flex;
  align-items: center;
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(109, 114, 255, 0.10) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--color-primary-1);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.74rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 19px;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Services Cards */
.service-card {
  background: var(--color-white);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.service-card .service-icon {
  font-size: 3rem;
  color: var(--color-primary-1);
  margin-bottom: 1.60rem;
}

.service-price {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-primary-1);
  margin: 1rem 0;
}

/* Team Cards */
.team-card {
  text-align: center;
  background: var(--color-white);
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--color-light-1);
}

/* Testimonials */
.testimonial-card {
  background: var(--color-white);
  padding: 2rem;
  border-left: 4px solid var(--color-primary-1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-primary-1);
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
}

/* FAQ */
.faq-item {
  background: var(--color-white);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: var(--color-light-1);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--color-gray-800);
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--color-light-2);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--color-gray-600);
  border-top: 1px solid var(--color-gray-200);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 6px solid var(--color-gray-200);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: var(--fs-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary-1);
  box-shadow: 0 0 0 0.2rem rgba(113, 116, 246, 0.25);
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-1) 0%, var(--color-primary-2) 100%);
  border: none;
  color: var(--color-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(117, 127, 229, 0.40);
}

/* Footer */
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--color-white);
  margin-bottom: 1.58rem;
}

.footer a {
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-primary-1);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-700);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary-1) 0%, var(--color-primary-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--color-light-1) 0%, var(--color-light-3) 100%);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--color-gray-600);
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* Process Steps */
.process-step {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-1) 0%, var(--color-primary-2) 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 1rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--color-primary-1);
  border-radius: 50%;
}

/* Feature Items */
.feature-item {
  text-align: center;
  padding: 1.5rem 1rem;
  height: 100%;
}

.feature-item i {
  margin-bottom: 1rem;
}

/* Navbar Scrolled State */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

/* Blog Item Links */
.btn-outline-primary {
  border: 2px solid var(--color-primary-1);
  color: var(--color-primary-1);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--color-primary-1);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Badge Styles */
.badge {
  font-size: var(--fs-xs);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.bg-primary { background-color: var(--color-primary-1) !important; }
.bg-secondary { background-color: var(--color-gray-500) !important; }
.bg-success { background-color: var(--color-primary-4) !important; }
.bg-warning { background-color: var(--color-primary-5) !important; }

/* Active FAQ Question */
.faq-question.active {
  background: var(--color-primary-1) !important;
  color: var(--color-white) !important;
}

/* Stats Section (for counter animation) */
.stats-section .counter {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-primary-1);
}

/* Additional Gallery Enhancements */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(125, 114, 255, 0.70);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: var(--fs-2xl);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Enhanced Button Styles */
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--fs-lg);
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: var(--fs-sm);
}

/* Text Utilities */
.text-primary { color: var(--color-primary-1) !important; }
.text-secondary { color: var(--color-gray-600) !important; }
.text-success { color: var(--color-primary-4) !important; }
.text-warning { color: var(--color-primary-5) !important; }
.text-danger { color: #e02b54 !important; }
.text-info { color: var(--color-primary-3) !important; }

/* Loading Animation */
.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Form Styles */
.form-check-input:checked {
  background-color: var(--color-primary-1);
  border-color: var(--color-primary-1);
}

.form-select {
  border: 2px solid var(--color-gray-200);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.form-select:focus {
  border-color: var(--color-primary-1);
  box-shadow: 0 0 0 0.2rem rgba(91, 88, 241, 0.25);
}

/* Container Enhancements */
.container-fluid {
  max-width: 1400px;
}

/* Section Spacing */
.section-gap {
  margin: 3rem 0;
}

/* Hero Enhancement */
.hero-section .hero-content h1 {
  padding-top: 50px !important; {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Team Grid Enhancement */
.team-grid .team-card {
  transition: transform 0.3s ease;
}

.team-grid .team-card:hover {
  transform: translateY(-10px);
}

/* Services Grid Enhancement */
.services-grid .service-card:nth-child(even) {
  background: linear-gradient(135deg, var(--color-light-1) 0%, var(--color-light-2) 100%);
}

/* Testimonial Enhancement */
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary-1);
  display: block;
  margin-top: 1rem;
}

/* CTA Enhancement */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-1) 0%, var(--color-primary-2) 100%);
  color: var(--color-white);
}

.cta-section h2,
.cta-section p {
  color: var(--color-white);
}

/* Additional spacing utilities */
.mb-6 { margin-bottom: 4rem !important; }
.mt-6 { margin-top: 4rem !important; }
.py-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; } 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
