/* Social Media Section Styles */
.socials-container {
  max-width:  1500px;
  margin: 20px auto;
  padding: 0 20px;
}

.social-block {
  display: flex;
  align-items: center;
  margin: 30px 0;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #07c70013;
}



.youtube {
  background-color: #f9f9f9;
  justify-content: flex-start;
}

.instagram {
  background-color: #f5f5f5;
  justify-content: flex-end;
}

.social-icon {
  width: 100px;
  height: auto;
  margin: 0 30px;
  transition: transform 0.3s;
}

.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: 1px;
  background-color: #ddd;
  margin: 40px auto;
  width: 80%;
}

/* Responsive styles */
@media (max-width: 768px) {
  .social-block {
    flex-direction: column;
    text-align: center;
  }
  
  .insta-text {
    text-align: center;
    order: 1;
  }
  
  .instagram a {
    order: 2;
  }
  
  .social-icon {
    margin: 20px 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: 400px;
  height: 225px;
}

.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%;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* ✨ here’s your shadow! */
}

}
