/* ============================================
   BOAGO SON GRAPHICS - MAIN STYLESHEET
   WITH BOOTSTRAP 5 & AOS
   ============================================ */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #666666;
  background-color: #ffffff;
}

/* Typography */
h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 1em;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000000;
  margin-bottom: 0.8em;
}

h3 {
  font-size: 28px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.6em;
}

p {
  margin-bottom: 1em;
  color: #666666;
}

a {
  color: #3A4F7A;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #2a3a52;
}



/* ============================================
   SECTIONS & SPACING
   ============================================ */

section {
  padding: 100px 40px;
}

@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px 40px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/Professional-Video-Editing-Tips-and-Tricks.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #ffffff; /* Sets default text color to white */

}
.hero-about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 18vh; 
  padding-right: 28vw;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000000; /* Sets default text color to black */

}
.hero-about {
  .main-title {
  font-size: clamp(3rem, 8vw, 5rem); /* Responsive size: gets bigger on large screens */
  line-height: 1.1;
  margin-bottom: 15px;
  /* Matches the heavy shadow in your screenshot */
  text-shadow: 4px 4px 0px rgba(0,0,0,0.1); 
}
 .subtitle {
font-size: 1.1rem;
  max-width: 550px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #555;
  }
}
@media (max-width: 768px) {
  .hero-about {
    padding-top: 30vh; /* Shorter gap for smaller screens */
    background-position: top center; /* Keeps the text in view */
  }
}
.hero {
  h1 {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Optional: adds extra depth */
}
 .subtitle {
    font-size: 24px;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
  }
}

/* ============================================
   BUTTONS & CTAs (Bootstrap Override)
   ============================================ */

.btn {
  font-size: 16px !important;
  font-weight: 600;
  border-radius: 4px !important;
  padding: 12px 32px !important;
  transition: all 0.2s ease;
  border: 2px solid !important;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background-color: #3A4F7A !important;
  color: #ffffff !important;
  border-color: #3A4F7A !important;
}

.btn-primary:hover {
  background-color: #2a3a52 !important;
  border-color: #2a3a52 !important;
}

.btn-secondary {
  background-color: transparent !important;
  color: #3A4F7A !important;
  border-color: #3A4F7A !important;
}

.btn-secondary:hover {
  background-color: #3A4F7A !important;
  color: #ffffff !important;
}

.btn-dark {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.btn-dark:hover {
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center !important;
  }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.three-column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .two-column,
  .three-column,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   TRUST STATEMENT & BLOCKS
   ============================================ */

.trust-statement {
  background-color: #F9F9F9;
  padding: 60px 40px;
  text-align: center;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.trust-statement h2 {
  max-width: 600px;
  margin: 0 auto 40px;
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  p {
    font-size: 16px;
    color: #999999;
  }
}



@media (max-width: 768px) {
  .trust-content {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CARDS (Bootstrap Override)
   ============================================ */

.card {
  border: 1px solid #E5E5E5 !important;
  border-radius: 4px !important;
  background-color: #F9F9F9 !important;
  transition: all 0.2s ease;
}

.card:hover {
  border-color: #3A4F7A !important;
  box-shadow: 0 4px 12px rgba(58, 79, 122, 0.1) !important;
}

.card-body {
  padding: 40px !important;
}

.card-title {
  color: #000000 !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  margin-bottom: 16px !important;
}

.card-text {
  color: #666666 !important;
  font-size: 16px !important;
}

.card::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background-color: #3A4F7A;
  border-radius: 50%;
  margin: 0 auto 16px;
}

/* ============================================
   PORTFOLIO GRID
   ============================================ */

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: #000000;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.portfolio-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover::after {
  opacity: 1;
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 600;
}

.portfolio-overlay .industry {
  font-size: 14px;
  color: #CCCCCC;
  margin-bottom: 8px;
}

.portfolio-overlay p {
  font-size: 14px;
  color: #CCCCCC;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial {
  background-color: #F9F9F9;
  padding: 40px;
  border-left: 4px solid #3A4F7A;
  margin-bottom: 24px;
  border-radius: 2px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: #000000;
  font-size: 16px;
}

.testimonial-role {
  font-size: 14px;
  color: #999999;
}

/* ============================================
   CONTACT FORM / INFO
   ============================================ */

.contact-info {
  background-color: #F9F9F9;
  padding: 40px;
  border-radius: 4px;
  margin-bottom: 40px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info-item {
  margin-bottom: 16px;
  font-size: 16px;
}

.contact-info-item strong {
  display: block;
  color: #000000;
  margin-bottom: 4px;
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 80px 40px 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section p {
  color: #CCCCCC;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-section a {
  color: #CCCCCC;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 24px;
  text-align: center;
  color: #666666;
  font-size: 14px;
}

@media (max-width: 768px) {
  footer {
    padding: 60px 20px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }
}

/* ============================================
   ACCESSIBILITY & UTILITIES
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   ACCORDION (Bootstrap Override)
   ============================================ */

.accordion {
  border: none !important;
}

.accordion-button {
  background-color: transparent !important;
  color: #000000 !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  padding: 24px 0 !important;
  border: none !important;
  border-bottom: 1px solid #E5E5E5 !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
  color: #3A4F7A !important;
}

.accordion-button:hover {
  color: #3A4F7A !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233A4F7A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  padding: 16px 0 !important;
  border: none !important;
  color: #666666;
  font-size: 16px;
}

/* ============================================
   PAGE-SPECIFIC STYLING
   ============================================ */

.credibility-anchor {
  background-color: #F9F9F9;
  padding: 60px 40px;
  text-align: center;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 0;
}

.credibility-anchor p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #666666;
  font-style: italic;
}

.service-preview {
  background-color: #ffffff;
}

.process-list {
  list-style: none;
  counter-reset: step-counter;
}

.process-list li {
  counter-increment: step-counter;
  padding-left: 60px;
  margin-bottom: 32px;
  position: relative;
  font-size: 18px;
}

.process-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #3A4F7A;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 18px;
}

.checklist {
  list-style: none;
}

.checklist li {
  padding-left: 32px;
  margin-bottom: 16px;
  position: relative;
  font-size: 16px;
  color: #666666;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3A4F7A;
  font-weight: 600;
  font-size: 20px;
}

/* ============================================
   DARK SECTIONS
   ============================================ */

.section-dark {
  background-color: #1A1A1A;
  color: #ffffff;
}

.section-dark h2 {
  color: #ffffff;
}

.section-dark p {
  color: #CCCCCC;
}

.section-dark .btn-group {
  justify-content: center;
}
