/* Birdhouse Design Studio - Main Styles */

/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Color Palette - 5 Primary Colors */
:root {
  /* Primary Colors */
  --primary-forest: #2d5a27;
  --primary-sage: #87a96b;
  --primary-earth: #8b4513;
  --primary-sky: #87ceeb;
  --primary-cream: #f5f5dc;
  
  /* Light Shades */
  --light-forest: #4a7c43;
  --light-sage: #a4c287;
  --light-earth: #a0522d;
  --light-sky: #add8e6;
  --light-cream: #faf8f5;
  
  /* Dark Shades */
  --dark-forest: #1e3e1a;
  --dark-sage: #6b8554;
  --dark-earth: #654321;
  --dark-sky: #5f9ea0;
  --dark-cream: #e6e6d3;
  
  /* Additional Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  --gray-dark: #343a40;
}

/* Base Typography - Conservative Sizes */
html {
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--primary-forest) !important;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-earth);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.header-main {
  background: linear-gradient(135deg, var(--primary-forest), var(--light-forest));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-cream) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(45, 90, 39, 0.7), rgba(135, 169, 107, 0.7)), url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
}

.hero-content {
  z-index: 2;
}

.hero-decorative {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--primary-sage), var(--primary-sky));
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

/* Services Section */
.services-section {
  background: var(--light-cream);
  padding: 5rem 0;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-earth);
  margin-top: 1rem;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: var(--white);
}

.feature-item {
  background: var(--light-cream);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-sage);
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--light-sage), var(--light-sky));
  padding: 5rem 0;
  color: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--white);
}

/* Reviews/Testimonials */
.reviews-section {
  background: var(--white);
  padding: 5rem 0;
}

.review-item {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 10px;
  margin: 1rem;
  border-left: 4px solid var(--primary-earth);
}

/* Blog Section */
.blog-section {
  background: var(--gray-light);
  padding: 5rem 0;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: var(--light-cream);
  padding: 5rem 0;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--light-sage);
}

.faq-question {
  background: var(--primary-sage);
  color: var(--white);
  padding: 1rem;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
}

.faq-answer {
  padding: 1rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-sage));
  color: var(--white);
  padding: 5rem 0;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  color: var(--gray-dark);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-earth), var(--light-earth));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-earth), var(--primary-earth));
  transform: translateY(-2px);
}

/* Footer */
.footer-main {
  background: var(--dark-forest);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

footer h5, footer p {
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-cream);
}

.footer-bottom {
  border-top: 1px solid var(--primary-sage);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-container {
  background: var(--light-cream);
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

/* Process/Timeline Sections */
.process-section,
.timeline-section {
  background: var(--white);
  padding: 5rem 0;
}

.process-step,
.timeline-item {
  background: var(--light-cream);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-earth);
}

/* Career Section */
.career-section {
  background: var(--gray-light);
  padding: 5rem 0;
}

.career-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--light-sage), var(--light-sky));
  padding: 5rem 0;
}

.coreinfo-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage) !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-sage) !important;
}

/* Utility Classes */
.section-padding {
  padding: 5rem 0;
}

.text-primary-custom {
  color: var(--primary-forest) !important;
}

.bg-primary-custom {
  background-color: var(--primary-sage) !important;
}

.border-primary-custom {
  border-color: var(--primary-sage) !important;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--white);
  padding: 5rem 0;
}

.price-card {
  background: var(--light-cream);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-sage);
  transform: translateY(-5px);
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-earth);
  margin: 1rem 0;
}

/* Case Study Section */
.casestudy-section {
  background: var(--gray-light);
  padding: 5rem 0;
}

.casestudy-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Additional Page Sections */
.add-page-section {
  padding: 4rem 0;
}

.add-page-section:nth-child(odd) {
  background: var(--white);
}

.add-page-section:nth-child(even) {
  background: var(--light-cream);
}

.add-page-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-sage);
}

/* Space Page */
#space {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--light-sage), var(--light-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  text-align: center;
} 


/* 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;
    }
}
