/* Facebook Feed Page Specific Styles */

/* Feed Hero Section */
.feed-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="social" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="%23654321"/><circle cx="20" cy="30" r="3" fill="%23543210"/><circle cx="70" cy="60" r="2" fill="%23765432"/><circle cx="40" cy="80" r="4" fill="%23432110"/></pattern></defs><rect width="1200" height="800" fill="url(%23social)"/><path d="M0,400 Q300,200 600,400 T1200,400 L1200,800 L0,800 Z" fill="%234267B2" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feed-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(66, 103, 178, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

/* Facebook Feed Section */
.facebook-feed-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.loading-indicator {
    text-align: center;
    padding: 3rem;
    color: #ccc;
}

.loading-indicator i {
    font-size: 2rem;
    color: #4267B2;
    margin-bottom: 1rem;
}

.error-message {
    text-align: center;
    padding: 3rem;
    color: #ccc;
}

.error-message i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

/* Facebook Posts Grid */
.facebook-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.facebook-post {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.facebook-post:hover {
    transform: translateY(-5px);
    background: rgba(66, 103, 178, 0.1);
    border-color: rgba(66, 103, 178, 0.3);
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    color: white;
}

.post-info h4 {
    margin: 0;
    color: white;
    font-size: 1rem;
}

.post-date {
    color: #ccc;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.post-content {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #ddd;
}

.post-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    max-height: 300px;
    object-fit: cover;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-stats {
    display: flex;
    gap: 1rem;
    color: #ccc;
    font-size: 0.9rem;
}

.post-link {
    color: #4267B2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.post-link:hover {
    color: #ff6b35;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.facebook {
    background: #4267B2;
    color: white;
}

.social-link.facebook:hover {
    background: #365899;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(66, 103, 178, 0.4);
}

.social-link.phone {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
}

.social-link.phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.social-link.email {
    background: transparent;
    color: white;
    border-color: white;
}

.social-link.email:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

/* Navigation Active State */
.nav-menu a.active {
    color: #ff6b35;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feed-hero {
        height: 50vh;
    }
    
    .facebook-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .facebook-post {
        padding: 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .social-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}