/* Photography Retreat Website - Main Styles */
/* Bootstrap 5 Compatible - No Overrides */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-rose: #e8b4b8;
  --primary-rose-light: #f5d7da;
  --primary-rose-dark: #d4939a;
  
  --primary-sage: #b8c5a7;
  --primary-sage-light: #d4dcc9;
  --primary-sage-dark: #9aa885;
  
  --primary-cream: #f4f1e8;
  --primary-cream-light: #fbf9f3;
  --primary-cream-dark: #e8e2d3;
  
  --primary-lavender: #c5b8e8;
  --primary-lavender-light: #ddd4f5;
  --primary-lavender-dark: #a393d4;
  
  --primary-dusty-blue: #a7b8c5;
  --primary-dusty-blue-light: #c9d4dc;
  --primary-dusty-blue-dark: #859aa8;
  
  /* Neutral Colors */
  --text-primary: #2d2d2d;
  --text-secondary: #5a5a5a;
  --text-light: #8a8a8a;
  --bg-light: #fefefe;
  --bg-accent: #f8f8f8;
  
  /* Conservative Typography */
  --font-size-hero: 2.5rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --element-margin: 2rem;
}

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

/* Base Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
}

/* Conservative Heading Sizes */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

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

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-rose-light) 100%);
  display: flex;
  align-items: center;
}

#hero .hero-title {
  font-size: var(--font-size-hero);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
    padding-top: 100px;
}

#hero .hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

#hero .hero-desc {
  font-size: var(--font-size-body);
  color: var(--text-light);
  max-width: 500px;
}

/* About Section */
#about {
  background-color: var(--bg-light);
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--primary-cream);
  border-radius: 12px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background-color: var(--bg-accent);
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: var(--primary-rose);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-sage-dark);
  margin-top: 1rem;
}

/* Features Section */
#features {
  background: linear-gradient(45deg, var(--primary-lavender-light) 0%, var(--primary-dusty-blue-light) 100%);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-lavender-dark);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
#priceplan {
  background-color: var(--bg-light);
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid var(--primary-cream);
}

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

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

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-sage-dark);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--primary-cream);
}

/* Team Section */
#team {
  background: var(--primary-cream);
}

.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-rose-light);
}

.team-member-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--text-secondary);
  font-style: italic;
}

/* Reviews Section */
#reviews {
  background-color: var(--bg-light);
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-lavender);
}

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

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

/* Case Study Section */
#casestudy {
  background: linear-gradient(135deg, var(--primary-dusty-blue-light) 0%, var(--primary-sage-light) 100%);
}

.case-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* Process Section */
#process {
  background-color: var(--bg-light);
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
}

.process-container {
  counter-reset: step-counter;
}

/* Timeline Section */
#timeline {
  background: var(--primary-cream);
}

.timeline-item {
  padding: 1.5rem 0;
  border-left: 3px solid var(--primary-lavender);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.5rem;
  width: 14px;
  height: 14px;
  background: var(--primary-lavender);
  border-radius: 50%;
}

/* Career Section */
#career {
  background-color: var(--bg-light);
}

.career-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid var(--primary-cream);
}

/* Core Info Section */
#coreinfo {
  background: linear-gradient(45deg, var(--primary-rose-light) 0%, var(--primary-cream) 100%);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-sage-dark);
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.contact-form {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.contact-info {
  background: var(--primary-sage-light);
  border-radius: 16px;
  padding: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-sage-dark);
  margin-right: 1rem;
  width: 30px;
}

/* Blog Section */
#blog {
  background: var(--primary-cream);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  background-color: var(--bg-light);
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid var(--primary-dusty-blue);
}

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

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

/* Gallery Section */
#gallery {
  background: var(--primary-dusty-blue-light);
  padding: 4rem 0;
}

.gallery-item {
  margin-bottom: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

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

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

footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-rose-light);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  margin-right: 0.75rem;
  width: 20px;
  color: var(--primary-rose-light);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-sage);
  border-color: var(--primary-sage);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
}

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

/* Form Controls */
.form-control {
  border-radius: 8px;
  border: 2px solid var(--primary-cream);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(184, 197, 167, 0.25);
}

/* Navbar */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

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

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

.border-primary-custom {
  border-color: var(--primary-sage);
}


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

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