/* Social Media Hero */
.social-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/social-hero-bg.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.social-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.social-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Social Media Categories */
.social-categories {
    padding: 60px 0 30px;
    background-color: var(--dark-gray);
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.category-btn {
    background: var(--light-gray);
    color: var(--text-muted);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: var(--black);
}

/* Social Media Grid */
.social-grid-section {
    padding: 60px 0;
    background-color: var(--black);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-item {
    background: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.1);
}

.social-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.social-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-item:hover .social-thumbnail img {
    transform: scale(1.1);
}

.view-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.social-item:hover .view-btn {
    opacity: 1;
}

.view-btn i {
    color: var(--white);
    font-size: 24px;
}

.social-info {
    padding: 20px;
}

.social-info h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 20px;
}

.social-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.social-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 13px;
}

.social-stats i {
    color: var(--primary);
}

/* Campaign Modal */
.campaign-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.modal-content {
    background: var(--black);
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
}

.campaign-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
}

.campaign-images img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.campaign-images img:hover {
    transform: scale(1.02);
}

.campaign-details {
    color: var(--white);
}

.campaign-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.campaign-description {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.campaign-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--dark-gray);
    border-radius: 8px;
}

.stat-item i {
    color: var(--primary);
    font-size: 20px;
}

.stat-label {
    font-weight: 600;
    color: var(--text-muted);
}

.stat-value {
    margin-left: auto;
    font-weight: 700;
    color: var(--white);
}

.platform-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.platform-badge {
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--primary);
}

/* CTA Section */
.social-cta {
    background: var(--dark-gray);
    padding: 80px 0;
    text-align: center;
}

.social-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.social-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .modal-content {
        flex-direction: column;
    }
    
    .campaign-images {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .social-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .campaign-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .social-hero {
        height: 50vh;
    }
    
    .social-hero-content h1 {
        font-size: 2rem;
    }
    
    .category-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .campaign-stats {
        grid-template-columns: 1fr;
    }
    
    .social-cta h2 {
        font-size: 2rem;
    }
}