:root {
  /* Primary Color Palette - Scenic Photography Theme */
  --color-primary: #2c5530; /* Forest Green */
  --color-secondary: #8b4513; /* Saddle Brown */
  --color-accent: #4682b4; /* Steel Blue */
  --color-warm: #cd853f; /* Peru */
  --color-neutral: #696969; /* Dim Gray */
  
  /* Light Shades */
  --color-primary-light: #4a7c4e;
  --color-secondary-light: #a0522d;
  --color-accent-light: #5f9ea0;
  --color-warm-light: #daa520;
  --color-neutral-light: #808080;
  
  /* Dark Shades */
  --color-primary-dark: #1e3a21;
  --color-secondary-dark: #654321;
  --color-accent-dark: #2f4f4f;
  --color-warm-dark: #8b6914;
  --color-neutral-dark: #2f2f2f;
  
  /* Additional Colors */
  --white: #ffffff;
  --black: #000000;
  --text-light: #f5f5f5;
  --text-dark: #2c2c2c;
  
  /* Conservative Font Sizes */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.125rem;
  --font-size-h6: 1rem;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary), var(--color-warm));
  --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  --gradient-hero: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent-dark), var(--color-warm-dark));
}

/* 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;
    scroll-behavior: auto !important;
  }
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body { overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: var(--font-size-base);
  background-color: var(--white);
}

/* Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  max-width: 65ch;
}

/* Header & Navigation */
.navbar {
  background: var(--gradient-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-warm-light) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--white);
  font-size: var(--font-size-h1);
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--color-warm-light);
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--text-light);
  font-size: var(--font-size-base);
  margin-bottom: 2rem;
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-neutral);
  margin-bottom: 0.5rem;
  font-size: var(--font-size-lg);
}

.section-desc {
  text-align: center;
  color: var(--color-neutral-dark);
  margin: 0 auto 3rem;
  max-width: 600px;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--color-neutral-light), var(--white));
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-secondary);
}

.services-section .section-title,
.services-section .section-subtitle,
.services-section .section-desc {
  color: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-price {
  font-size: var(--font-size-h2);
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--color-accent-light);
}

.team-name {
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--color-neutral);
  font-style: italic;
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-primary-light));
}

.blog-section .section-title,
.blog-section .section-subtitle,
.blog-section .section-desc {
  color: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-body { overflow-x: hidden;
  padding: 1.5rem;
}

.blog-title {
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--color-neutral-dark);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--color-accent-dark);
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Reviews/Testimonials */
.reviews-section {
  background: var(--gradient-accent);
}

.reviews-section .section-title,
.reviews-section .section-subtitle,
.reviews-section .section-desc {
  color: var(--white);
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: 1rem 0;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--color-neutral-dark);
}

.review-author {
  color: var(--color-primary-dark);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--color-warm-light), var(--color-secondary-light));
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--color-primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--color-neutral-dark);
  margin: 0;
}

/* Contact Section */
.contact-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-section .section-title,
.contact-section .section-subtitle,
.contact-section .section-desc {
  color: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-control {
  border: 2px solid var(--color-neutral-light);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(70, 130, 180, 0.25);
}

.btn-primary {
  background: var(--gradient-accent);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--color-accent-dark);
}

/* Footer */
.footer {
  background: var(--color-neutral-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--color-warm-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-warm-light);
}

.footer-bottom {
  border-top: 1px solid var(--color-neutral);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 24px;
  width: auto;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-overlay {
  position: relative;
}

.bg-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.bg-overlay > * {
  position: relative;
  z-index: 2;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--color-accent);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-accent);
}

/* Lightbox Customization */
.lb-data .lb-caption {
  font-size: var(--font-size-base);
  color: var(--white);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
