/* Social Media Section */
.social-section {
  padding: 5rem 0 0 0;
  background-color: #fff;
  overflow: hidden;
}

.social-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.social-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: #000000;
}

.social-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

.instagram-feed {
  position: relative;
  margin-bottom: 3rem;
  width: 100vw;
  overflow: hidden;
}

.instagram-slider {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.instagram-slide {
  flex: 0 0 auto;
  width: calc(20% - 0.4rem);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 9/16;
}

.instagram-post {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-link:hover .instagram-overlay {
  opacity: 1;
}

.instagram-link:hover .instagram-image {
  transform: scale(1.05);
}

.instagram-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #333;
  transition: all 0.2s ease;
}

.instagram-nav:hover {
  background-color: #000000;
  color: #fff;
}

.instagram-nav.prev {
  left: 10px;
}

.instagram-nav.next {
  right: 10px;
}

.instagram-cta {
  margin: 3rem 0;
}

.instagram-button {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.instagram-button:hover {
  background-color: #333;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .instagram-slide {
    width: calc(33.333% - 0.33rem);
  }
}

@media (max-width: 767.98px) {
  .social-section {
    padding: 3rem 0 0 0;
  }
  
  .social-title {
    font-size: 2.5rem;
  }
  
  .social-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .instagram-slider {
    gap: 0.25rem;
  }
  
  .instagram-slide {
    width: 85%;
  }
  
  .instagram-nav {
    display: none;
  }
  
  .instagram-cta {
    margin: 2rem 0;
  }
} 