/* ====================================
   INSTAGRAM SECTION - FULL WIDTH
   ==================================== */
.instagram-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.instagram-banner {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 600px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.instagram-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.instagram-content h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.instagram-content p {
    font-size: 24px;
    margin: 0 0 30px 0;
    font-weight: 500;
}

.instagram-btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .instagram-banner {
        min-height: 300px;
        padding: 60px 20px;
    }

    .instagram-content h3 {
        font-size: 32px;
    }

    .instagram-content p {
        font-size: 18px;
    }

    .instagram-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}