/* Instagram section styles */
.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.instagram-post {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.instagram-follow-btn i {
    font-size: 1.5rem;
    margin-right: 8px;
}

/* RTL overrides for Arabic */
html[dir="rtl"] .instagram-follow-btn i {
    margin-right: 0;
    margin-left: 8px;
}
