/* Social Feed Section */
.social-feed-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-grey) 100%);
  padding: 80px 0;
}

.social-feed-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.social-feed-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.social-feed-header {
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-feed-header i {
  font-size: 1.4rem;
  color: var(--color-gold);
}

.social-follow-btn {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--color-gold);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.social-follow-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

.social-follow-btn i {
  font-size: 0.7rem;
  color: inherit;
  margin-left: 4px;
}

/* ============================
   Video Feed (left panel)
   ============================ */
.video-feed .video-feed-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 0;
}

.video-feed-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.video-feed-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 106, 0.3);
  transform: translateX(3px);
}

.video-feed-thumb {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201, 169, 106, 0.2), rgba(201, 169, 106, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.video-feed-card:hover .video-feed-thumb {
  background: linear-gradient(135deg, rgba(201, 169, 106, 0.35), rgba(201, 169, 106, 0.1));
}

.video-feed-thumb i {
  color: var(--color-gold);
  font-size: 1rem;
}

.video-feed-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.video-feed-info strong {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-feed-info span {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

/* Platform icons - original brand colors */
.video-feed-platform {
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.video-feed-platform.platform-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-feed-platform.platform-facebook {
  color: #1877f2;
}

.video-feed-platform.platform-tiktok {
  color: #25f4ee;
}

.video-feed-card:hover .video-feed-platform.platform-instagram {
  filter: brightness(1.2);
}

.video-feed-card:hover .video-feed-platform.platform-facebook {
  color: #4293f5;
}

.video-feed-card:hover .video-feed-platform.platform-tiktok {
  color: #5ff7f0;
}

/* ============================
   Video Modal (lightbox)
   ============================ */
.video-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-overlay.active {
  display: flex;
}

.video-modal {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 85vh;
  max-height: 900px;
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  z-index: 1;
}

.video-modal-close:hover {
  color: var(--color-gold);
}

.video-modal-content {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Modal placeholder (when no embed URL) */
.video-modal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
  text-align: center;
  gap: 20px;
}

.video-modal-placeholder > i {
  font-size: 4rem;
}

.video-modal-placeholder h3 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
  max-width: 350px;
}

.video-modal-placeholder p {
  color: #999;
  font-size: 0.95rem;
  margin: 0;
}

.video-modal-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.video-modal-watch-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================
   Social Links (right panel)
   ============================ */
.social-links-feed .social-links-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.social-cta-text {
  font-size: 1.1rem;
  color: var(--color-light-grey);
  text-align: center;
  margin: 0;
}

.social-big-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-big-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-big-btn:hover {
  transform: translateX(5px);
  border-color: var(--color-gold);
}

.social-big-btn > i:first-child {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.social-big-btn .social-btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.social-big-btn .social-btn-text strong {
  color: #fff;
  font-size: 1.1rem;
}

.social-big-btn .social-btn-text span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.social-big-btn > i:last-child {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.social-big-btn:hover > i:last-child {
  transform: translateX(3px);
  color: var(--color-gold);
}

/* Instagram Button */
.instagram-btn > i:first-child {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.instagram-btn:hover {
  background: rgba(225, 48, 108, 0.1);
}

/* TikTok Button */
.tiktok-btn > i:first-child {
  background: #000;
  color: #fff;
  position: relative;
}

.tiktok-btn:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Facebook Button */
.facebook-btn > i:first-child {
  background: #1877f2;
  color: #fff;
}

.facebook-btn:hover {
  background: rgba(24, 119, 242, 0.1);
}

/* Social Stats */
.social-stats {
  display: flex;
  justify-content: space-around;
  padding: 25px 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.social-stat i {
  font-size: 1.5rem;
  color: var(--color-gold);
}

.social-stat span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============================
   Light Theme
   ============================ */
body.light-theme .social-feed-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

body.light-theme .social-feed-item {
  background: #fff;
  border-color: #e0e0e0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

body.light-theme .social-feed-header {
  background: #f5f5f5;
  border-color: #e0e0e0;
  color: #333;
}

body.light-theme .video-feed-card {
  background: #f8f8f8;
  border-color: #eee;
}

body.light-theme .video-feed-card:hover {
  background: #f0f0f0;
  border-color: var(--color-gold);
}

body.light-theme .video-feed-info strong {
  color: #333;
}

body.light-theme .video-feed-info span {
  color: #666;
}

body.light-theme .video-feed-thumb {
  background: linear-gradient(135deg, rgba(201, 169, 106, 0.15), rgba(201, 169, 106, 0.05));
}

body.light-theme .social-cta-text {
  color: #555;
}

body.light-theme .social-big-btn {
  background: #f8f8f8;
  border-color: #e0e0e0;
}

body.light-theme .social-big-btn:hover {
  background: #f0f0f0;
  border-color: var(--color-gold);
}

body.light-theme .social-big-btn .social-btn-text strong {
  color: #333;
}

body.light-theme .social-big-btn .social-btn-text span {
  color: #666;
}

body.light-theme .social-stats {
  border-color: #e0e0e0;
}

body.light-theme .social-stat span {
  color: #666;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 900px) {
  .social-feed-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .social-feed-section {
    padding: 60px 0;
  }

  .social-feed-header {
    padding: 15px 20px;
  }

  .social-links-feed .social-links-content {
    padding: 20px;
  }

  .social-big-btn {
    padding: 15px 20px;
  }

  .social-big-btn > i:first-child {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .video-feed-card {
    padding: 10px;
    gap: 10px;
  }

  .video-feed-thumb {
    width: 40px;
    height: 40px;
  }

  .video-feed-info strong {
    font-size: 0.82rem;
  }

  .video-modal {
    max-width: 100%;
    height: 70vh;
  }

  .social-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}
