/* Social Media Section Styles */
.socials-container {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 20px;
}

.social-block {
  display: flex;
  align-items: center;
  margin: 32px 0;
  padding: 28px 28px;
  border-radius: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  background: linear-gradient(135deg,#f8fafc,#f1f5f9);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.social-block:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.08); transform: translateY(-4px); }



.youtube {
  background-color: #f9f9f9;
  justify-content: flex-start;
}

.instagram {
  background-color: #f5f5f5;
  justify-content: flex-end;
}

.social-icon {
  width: 90px;
  height: auto;
  margin: 0 30px;
  transition: transform 0.3s;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-text {
  max-width: auto;
}

.social-text h3 {
  color: #333;
  margin-bottom: 10px;
}

.social-text p {
  color: #666;
  line-height: 1.5;
}

.insta-text {
  text-align: right;
}

.social-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg,rgba(0,0,0,0),#e2e8f0,rgba(0,0,0,0));
  margin: 48px auto;
  width: 70%;
  border-radius: 2px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .social-block { flex-direction: column; text-align: center; padding: 24px 20px; }
  .social-icon { margin: 16px 0 8px; width: 80px; }
  .insta-text { text-align: center; order: 1; }
  .instagram a { order: 2; }
  .youtube-left { flex-direction: column; }
  .youtube-left .social-icon { margin: 0 0 16px 0; }
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

/* Make the YouTube block layout clean */
.youtube {
  background-color: #f9f9f9;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Left side: icon + text stacked horizontally */
.youtube-left { display: flex; align-items: center; flex: 1; min-width: 300px; }

/* Keep the icon spacing nice */
.youtube-left .social-icon {
  margin-right: 20px;
}

/* Right side: video iframe */
.youtube-video { flex-shrink: 0; width: 420px; height: 236px; position: relative; }
.youtube-video iframe { width:100%; height:100%; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.12); }

.youtube-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Mobile responsive: stack content */
@media (max-width: 768px) {
  .youtube {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .youtube-left {
    flex-direction: column;
    align-items: center;
  }

  .youtube-left .social-icon {
    margin: 0 0 20px 0;
  }

  .youtube-video { width:100%; height:auto; aspect-ratio:16/9; }
  .youtube-video iframe { width:100%; height:100%; }


@media (max-width:480px){
  .social-block { padding:20px 16px; }
  .social-icon { width:72px; }
  .youtube-left h3{font-size:1.1rem;}
  .social-text p{font-size:0.9rem;}
  .youtube-video{aspect-ratio:16/9;}
}
}
