/* Recycled Paper Notebook Customization - Main Styles */

:root {
  /* Eco-friendly pastel color palette */
  --primary-green: #7fb069;
  --secondary-brown: #8b7355;
  --accent-cream: #f5f3e7;
  --text-dark: #3d3d3d;
  --text-light: #6b7280;
  
  /* Light variations */
  --primary-green-light: #a8c99a;
  --secondary-brown-light: #b59882;
  --accent-cream-light: #f9f8f2;
  
  /* Dark variations */
  --primary-green-dark: #5a8a47;
  --secondary-brown-dark: #6b5842;
  
  /* Additional palette */
  --soft-blue: #a8d5e5;
  --warm-orange: #e6a866;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--accent-cream);
  font-size: 16px;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--primary-green-dark);
}

h1 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-green-dark);
}

h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
}

h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background-color: var(--accent-cream);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--accent-cream) 0%, var(--accent-cream-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-green-light);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: var(--secondary-brown-light);
  border-radius: 50%;
  opacity: 0.1;
}

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

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

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

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

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-header {
  background-color: var(--primary-green-light);
  border-bottom: none;
  padding: 1.5rem;
  border-radius: 12px 12px 0 0;
}

.card-body {
  padding: 1.5rem;
}

/* Services Section */
.services-card {
  height: 100%;
  border: 2px solid var(--accent-cream-light);
}

.services-card .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.price-badge {
  background-color: var(--warm-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 1rem;
}

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

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

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}

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

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

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

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

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* FAQ Section */
.faq-card {
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-green);
}

/* Gallery */
.gallery-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

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

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

/* Process Timeline */
.process-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step:nth-child(1)::before { content: '1'; color: white; font-weight: bold; }
.process-step:nth-child(2)::before { content: '2'; color: white; font-weight: bold; }
.process-step:nth-child(3)::before { content: '3'; color: white; font-weight: bold; }
.process-step:nth-child(4)::before { content: '4'; color: white; font-weight: bold; }
.process-step:nth-child(5)::before { content: '5'; color: white; font-weight: bold; }

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

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

/* Animations - Sal.js compatible */
@media (prefers-reduced-motion: no-preference) {
  [data-sal] {
    transition-duration: 0.5s;
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  
  .section {
    padding: 2rem 0;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
} 

.hero-section h1 {
    padding-top: 100px;
}



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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}



/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

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

.x-link i {
    display: none;
}

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